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 H4Props extends SafeOmit, 'className' | 'style'>, PublicTypographyProps {} export function H4({ appearance = 'h4', ...rest }: H4Props) { return ; }