UNPKG

ygd

Version:

An enterprise-class UI design language and React-based implementation

9 lines (8 loc) 239 B
import * as React from 'react'; import { ProgressProps } from './progress'; interface LineProps extends ProgressProps { prefixCls: string; children: React.ReactNode; } declare const Line: React.SFC<LineProps>; export default Line;