coral-ui
Version:
Biblioteca de components criada pelo Design System para os produtos da Pulse criada em react-native
12 lines (11 loc) • 375 B
TypeScript
import { TextProps } from '@shopify/restyle';
import { ReactNode } from 'react';
import { ITheme } from '../../themes/interface';
declare type CustomTextProps = Partial<{
children?: ReactNode;
fs?: Custom.FontSize;
lh?: Custom.LineHeight;
ls?: Custom.LetterSpacing;
testID?: string;
}> & Partial<TextProps<ITheme>>;
export { CustomTextProps };