ukelli-ui
Version:
Base on React's UI lib. Make frontend's dev simpler and faster.
15 lines (14 loc) • 351 B
TypeScript
import React from 'react';
import { Color } from '../utils/props';
export interface LabelProps {
/** 内容 */
text?: string;
/** label 的背景颜色 */
color?: Color;
/** label 的字体颜色 */
tColor?: Color;
className?: string;
children?: any;
}
declare const Label: React.SFC<LabelProps>;
export default Label;