starchild-widget
Version:
Starchild Widget
18 lines • 512 B
TypeScript
import { default as React } from 'react';
interface LineProps {
/** 线条方向 */
direction?: 'horizontal' | 'vertical';
/** 线条类型 */
type?: 'solid' | 'dash';
/** 颜色等级 */
colorLevel?: 4 | 6 | 8 | 12 | 16;
/** 自定义padding */
padding?: number;
/** 自定义样式类名 */
className?: string;
/** 自定义样式 */
style?: React.CSSProperties;
}
declare const Line: React.FC<LineProps>;
export default Line;
//# sourceMappingURL=index.d.ts.map