Add back extension popup files

This commit is contained in:
SethBurkart123
2023-09-19 20:50:04 +10:00
parent 88df9ec157
commit f34d0a3e77
33 changed files with 71 additions and 104 deletions
+6
View File
@@ -0,0 +1,6 @@
interface ColorPickerProps {
color: string;
onChange: (color: string) => void;
}
declare const Picker: ({ color, onChange }: ColorPickerProps) => import("react/jsx-runtime").JSX.Element;
export default Picker;