diff --git a/starters/docs/src/ColorPicker.tsx b/starters/docs/src/ColorPicker.tsx index 6e6c83f6715..218ee783c10 100644 --- a/starters/docs/src/ColorPicker.tsx +++ b/starters/docs/src/ColorPicker.tsx @@ -13,7 +13,7 @@ import {Popover} from './Popover'; import './ColorPicker.css'; -export interface ColorPickerProps extends AriaColorPickerProps { +export interface ColorPickerProps extends Omit { label?: string; children?: React.ReactNode; } diff --git a/starters/tailwind/src/ColorPicker.tsx b/starters/tailwind/src/ColorPicker.tsx index 30391f433d7..3ae89717e28 100644 --- a/starters/tailwind/src/ColorPicker.tsx +++ b/starters/tailwind/src/ColorPicker.tsx @@ -15,7 +15,7 @@ const buttonStyles = tv({ base: 'border-0 bg-transparent flex gap-2 items-center cursor-default rounded-xs text-sm text-gray-800 dark:text-gray-200' }); -export interface ColorPickerProps extends AriaColorPickerProps { +export interface ColorPickerProps extends Omit { label?: string; children?: React.ReactNode; }