import React from "react"; import { ComponentStory, ComponentMeta } from "@storybook/react"; import { H2 } from "./H2"; export default { title: "Design System/Atoms/Headings/Size 2", component: H2, argTypes: { children: { name: "Content", type: "string", defaultValue: "I am a heading of size 2!", }, }, } as ComponentMeta; const Template: ComponentStory = (args) =>

; export const Default = Template.bind({});