@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
13 lines (12 loc) • 538 B
TypeScript
import { ColorFormat } from '@zag-js/color-picker';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
interface FormatOptions {
format: ColorFormat;
}
export interface ColorPickerViewBaseProps extends FormatOptions, PolymorphicProps {
}
export interface ColorPickerViewProps extends HTMLProps<'div'>, ColorPickerViewBaseProps {
}
export declare const ColorPickerView: ForwardRefExoticComponent<ColorPickerViewProps & RefAttributes<HTMLDivElement>>;
export {};