@wix/design-system
Version:
@wix/design-system
14 lines • 425 B
TypeScript
import { ReactNode, FunctionComponent } from 'react';
import { SKIN_PRIORITY_MAP } from '../constants';
type ControlProps = {
dataHook?: string;
className?: string;
onClick: () => void;
icon: ReactNode;
size?: string;
skin?: keyof typeof SKIN_PRIORITY_MAP;
disabled?: boolean;
};
declare const Control: FunctionComponent<ControlProps>;
export default Control;
//# sourceMappingURL=Control.d.ts.map