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 | import { Story, Meta } from "@storybook/html"; export default { title: "Art/Pixel Art", } as Meta; interface Properties { shape: string; } const Template: Story<Properties> = ({ shape }) => `<div class="pa--${shape}"></div>`; export const Mario = Template.bind({}); Mario.args = { shape: "mario", }; export const MarioMushroom = Template.bind({}); MarioMushroom.args = { shape: "mario-mushroom", }; export const MarioStar = Template.bind({}); MarioStar.args = { shape: "mario-star", }; |