shadcn-theme-editor
Version:
23 lines (18 loc) • 1.03 kB
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { SVGProps } from 'react';
declare function EditorOpenBtn(): react_jsx_runtime.JSX.Element;
declare function setSavedTheme(theme: string | undefined): boolean;
declare function ResetIcon({ className, ...props }: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
declare function CopyIcon({ className, ...props }: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
declare const Icons: {
ResetIcon: typeof ResetIcon;
CopyIcon: typeof CopyIcon;
Dices: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
UnLock: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
Lock: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
X: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
ColorPalette: ({ size, ...props }: SVGProps<SVGSVGElement> & {
size: number;
}) => react_jsx_runtime.JSX.Element;
};
export { Icons, EditorOpenBtn as default, setSavedTheme };