Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | import { Story, Meta } from "@storybook/html"; import "@jga/ui-buttons/public/build/bundle"; export default { title: "Base/Button", } as Meta; interface Properties { color?: string; label: string; } const Template: Story<Properties> = ({ label, color = "primary" }) => { return ` <jga-ui-button label="${label}" color="${color}" ></jga-ui-button> `; }; const label = "Button"; export const Primary = Template.bind({}); Primary.args = { label, }; export const Success = Template.bind({}); Success.args = { color: "success", label, }; export const Danger = Template.bind({}); Danger.args = { color: "danger", label, }; export const Warning = Template.bind({}); Warning.args = { color: "warning", label, }; export const Info = Template.bind({}); Info.args = { color: "info", label, }; |