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