Lines Matching refs:TextProps
6 import { TextProps } from '../primitives/Text';
8 export const P = forwardRef(({ style, ...props }: TextProps, ref) => {
10 }) as ComponentType<TextProps>;
12 export const B = forwardRef(({ style, ...props }: TextProps, ref) => {
14 }) as ComponentType<TextProps>;
16 export const S = forwardRef(({ style, ...props }: TextProps, ref) => {
18 }) as ComponentType<TextProps>;
20 export const Del = forwardRef(({ style, ...props }: TextProps, ref) => {
22 }) as ComponentType<TextProps>;
24 export const Strong = forwardRef(({ style, ...props }: TextProps, ref) => {
26 }) as ComponentType<TextProps>;
28 export const I = forwardRef(({ style, ...props }: TextProps, ref) => {
30 }) as ComponentType<TextProps>;
40 export const EM = forwardRef(({ style, ...props }: TextProps, ref) => {
42 }) as ComponentType<TextProps>;
44 export const BR = forwardRef((props: TextProps, ref) => {
46 }) as ComponentType<TextProps>;
48 export const Small = forwardRef(({ style, ...props }: TextProps, ref) => {
50 }) as ComponentType<TextProps>;
52 export const Mark = forwardRef(({ style, ...props }: TextProps, ref) => {
54 }) as ComponentType<TextProps>;
56 export const Code = forwardRef((props: TextProps, ref) => {
58 }) as ComponentType<TextProps>;
64 export const Pre = forwardRef(({ style, ...props }: TextProps, ref) => {
66 }) as ComponentType<TextProps>;