UNPKG

@pisell/layout

Version:

基于 Fusion 设计系统的自然布局体系

10 lines (9 loc) 255 B
import { FC } from 'react'; import { TextProps, TypeMark } from './types'; export type ITextComponent = FC<TextProps> & TypeMark; /** * 文字 包含:字号、字重、行高 * @param props */ declare const Text: ITextComponent; export default Text;