import { Stack } from '../Box/Stack'; import { Icon } from '../Icon'; import { Heading } from './Heading'; import type { HeadingProps } from './defs'; export default { component: Heading, title: 'Base/Typography/Heading', argTypes: {}, }; export const Usage = (args: HeadingProps) => ( Some title Some title Some title Some title Some title Some title ); const iconProps = { leftIcon: , leftIconAriaLabel: 'Calendar', iconSize: 22, }; export const WithIcon = (args: HeadingProps) => ( Some title Some title Some title Some title Some title Some title );