import { Meta, StoryObj } from "@storybook/angular"; import { TypographyDirective } from "./typography.directive"; export default { title: "Component Library/Typography", component: TypographyDirective, } as Meta; export const Default: StoryObj = { render: (args) => ({ props: args, template: /*html*/ `
h1 - {{ text }}
h2 - {{ text }}
h3 - {{ text }}
h4 - {{ text }}
h5 - {{ text }}
h6 - {{ text }}
body1 - {{ text }}
body2 - {{ text }}
helper - {{ text }}
`, }), args: { text: `Sphinx of black quartz, judge my vow.`, }, };