import type { ComponentProps } from 'react'; import React from 'react'; import { Heading } from '@shoptet/ui-core-web'; import type { SafeOmit } from '@shoptet/utils'; import type { PublicTypographyProps } from '../getTypographyProps'; import { getTypographyProps } from '../getTypographyProps'; export interface H1Props extends SafeOmit, 'className' | 'style'>, PublicTypographyProps {} export function H1({ appearance = 'h1', ...props }: H1Props) { return ; }