drizzle-cube
Version:
Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.
12 lines (11 loc) • 439 B
TypeScript
/**
* Color Palette Selector Component
* Allows users to select from predefined color palettes for their dashboard
*/
interface ColorPaletteSelectorProps {
currentPalette?: string;
onPaletteChange: (paletteName: string) => void;
className?: string;
}
export default function ColorPaletteSelector({ currentPalette, onPaletteChange, className }: ColorPaletteSelectorProps): import("react/jsx-runtime").JSX.Element;
export {};