import type { ComponentProps } from 'react'; import React from 'react'; import { Strong as CoreStrong } from '@shoptet/ui-core-web'; import type { SafeOmit } from '@shoptet/utils'; import type { PublicTypographyProps } from '../getTypographyProps'; import { getTypographyProps } from '../getTypographyProps'; /** @inheritdoc */ export interface StrongProps extends SafeOmit, 'className' | 'style'>, PublicTypographyProps {} export function Strong({ appearance = 'strong-md', ...rest }: StrongProps) { return ; }