@rc-component/color-picker
Version:
React Color Picker
13 lines (12 loc) • 344 B
TypeScript
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;