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, TypographyOwnProps } from '../getTypographyProps'; import { getTypographyProps } from '../getTypographyProps'; export interface H3Props extends SafeOmit, 'className' | 'style'>, PublicTypographyProps { divider?: TypographyOwnProps['divider']; } export function H3({ appearance = 'h3', ...rest }: H3Props) { return ; }