Files
BetterSEQTA-Plus/interface/src/components/ColorPicker.d.ts
T
2023-09-19 20:50:04 +10:00

7 lines
218 B
TypeScript

interface ColorPickerProps {
color: string;
onChange: (color: string) => void;
}
declare const Picker: ({ color, onChange }: ColorPickerProps) => import("react/jsx-runtime").JSX.Element;
export default Picker;