UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

26 lines (25 loc) 731 B
/// <reference types="react" /> import { FlexboxProps } from 'react-layout-kit'; export interface SwatchesProps extends Omit<FlexboxProps, 'onSelect'> { /** * @description The currently active color * @default undefined */ activeColor?: string; /** * @description An array of colors to be displayed as swatches */ colors: string[]; /** * @description A function to be called when a swatch is selected * @default undefined */ onSelect?: (c?: string | undefined) => void; /** * @description The size of swatch * @default 24 */ size?: number; } declare const Swatches: import("react").NamedExoticComponent<SwatchesProps>; export default Swatches;