PrimitivesTextBoxButtonFlexLinkModalData inputInputData vizList
Button Interlock react component
Reference any dependencies you have here This component inherits props from BaseProps and ClickableProps 🔗 onClick

Inherited props

Box 🔗 children ▪️ padding ▪️ margin ▪️ css ▪️ className
Props
export interface BoxProps {
  /**
   * @param children children that are passed into the box
   */
  children?: React.ReactNode | ReactNode[];
  /**
   * @param  padding padding setting for the box (Optional)
   */
  padding?: "small" | "medium" | "large" | "x-large" | "none";
  /**
   * @param  margin padding setting for the box (Optional)
   */
  margin?: "small" | "medium" | "large" | "x-large" | "none";
  /**
   * @param CSS overrides provided in-line. (Optional)
   */
  css?: React.CSSProperties;
  /**
   * @param className css classnames
   */
  className?: string;
  /**
   * @param onClick onClick handler
   */
  onClick?: MouseEventHandler<HtmlButtonElement>;
}