UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 272 B
import { SegmentedProps } from 'antd'; import { FC } from 'react'; import { SEGMENTED } from '../../Types'; export interface ISegmented { ctype: typeof SEGMENTED; props: SegmentedProps; } declare const Segmented: FC<ISegmented>; export default Segmented;