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