UNPKG

mfg-ui-components

Version:

React UI library with reusable components

19 lines (18 loc) 632 B
import "./Button.scss"; export type color = "mfg-primary" | "mfg-secondary" | "mfg-success" | "mfg-danger" | "mfg-plain"; export interface Props { ButtonClass?: color; ButtonId?: any; children: any; onClick?: any; link?: any; customClass?: any; tabIndex?: number; role?: string; ariaSelected?: boolean; target?: any; ariaControl?: string; disabled?: boolean; } declare const Button: ({ ButtonClass, ButtonId, children, onClick, link, customClass, tabIndex, role, ariaSelected, target, ariaControl, disabled }: Props) => import("react/jsx-runtime").JSX.Element; export default Button;