UNPKG

@rc-component/color-picker

Version:
13 lines (12 loc) 344 B
import type { FC } from 'react'; import React from 'react'; import { Color } from '../color'; import type { HsbaColorType } from '../interface'; declare const Gradient: FC<{ colors: (Color | string)[]; direction?: string; children?: React.ReactElement; type?: HsbaColorType; prefixCls?: string; }>; export default Gradient;