@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
12 lines (11 loc) • 589 B
TypeScript
import { SwatchProps } from '@zag-js/color-picker';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
interface ValueSwatchProps extends Omit<SwatchProps, 'value'> {
}
export interface ColorPickerValueSwatchBaseProps extends ValueSwatchProps, PolymorphicProps {
}
export interface ColorPickerValueSwatchProps extends HTMLProps<'div'>, ColorPickerValueSwatchBaseProps {
}
export declare const ColorPickerValueSwatch: ForwardRefExoticComponent<ColorPickerValueSwatchProps & RefAttributes<HTMLDivElement>>;
export {};