UNPKG

drizzle-cube

Version:

Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.

9 lines (8 loc) 335 B
import { ChartType } from '../types'; interface ChartTypeSelectorProps { selectedType: ChartType; onTypeChange: (type: ChartType) => void; className?: string; } export default function ChartTypeSelector({ selectedType, onTypeChange, className }: ChartTypeSelectorProps): import("react/jsx-runtime").JSX.Element; export {};