mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-05 19:24:39 +00:00
7 lines
218 B
TypeScript
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;
|