UNPKG

@wonderflow/react-components

Version:

UI components from Wonderflow's Wanda design system

56 lines (55 loc) 2.32 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { Button, ButtonsGroup } from './button'; const story = { title: 'Actions/Button', component: Button, args: { dimension: 'regular', kind: 'primary', children: 'Click me', fullWidth: false, disabled: false, busy: false, pressed: false, }, argTypes: { onClick: { action: 'clicked', table: { disable: true, }, }, dimension: { options: ['small', 'regular', 'big'], control: { type: 'radio' }, }, kind: { options: ['primary', 'secondary', 'flat'], control: { type: 'radio' }, }, iconPosition: { options: ['left', 'right'], control: { type: 'inline-radio' }, }, }, }; export default story; const CustomReactIcon = ({ ...props }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 48, height: 48, viewBox: "0 0 256 256", ...props, children: _jsx("path", { d: "M128 16a96.2 96.2 0 0 0-96 96c0 24 12.6 55.1 33.6 83s44.5 45 62.4 45 41.2-16.8 62.4-45 33.6-59 33.6-83a96.2 96.2 0 0 0-96-96ZM64 116v-4a12 12 0 0 1 12-12 36 36 0 0 1 36 36v4a12 12 0 0 1-12 12 36 36 0 0 1-36-36Zm80 84h-32a8 8 0 0 1 0-16h32a8 8 0 0 1 0 16Zm48-84a36 36 0 0 1-36 36 12 12 0 0 1-12-12v-4a36 36 0 0 1 36-36 12 12 0 0 1 12 12Z" }) })); const Template = args => _jsx(Button, { ...args }); export const Default = Template.bind({}); Default.args = { disabled: false, }; export const WithIcon = Template.bind({}); WithIcon.args = { icon: 'bookmark', iconPosition: 'left', iconColor: 'currentColor', }; export const WithCustomIcon = Template.bind({}); WithCustomIcon.args = { icon: _jsx(CustomReactIcon, {}), }; const GroupTemplate = args => (_jsxs(ButtonsGroup, { ...args, children: [_jsx(Button, { pressed: true, children: "Action" }), _jsx(Button, { children: "Action" }), _jsx(Button, { children: "Action" }), _jsx(Button, { children: "Action" }), _jsx(Button, { children: "Action" }), _jsx(Button, { children: "Action" }), _jsx(Button, { children: "Action" }), _jsx(Button, { disabled: true, children: "Action" })] })); export const Grouped = GroupTemplate.bind({}); Grouped.args = {};