drizzle-cube
Version:
Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.
13 lines (12 loc) • 450 B
TypeScript
import { ReactNode } from 'react';
interface SectionHeadingProps {
children: ReactNode;
/** Optional className to add additional styles */
className?: string;
}
/**
* Consistent section heading style for Analysis Builder panels.
* Change the styles here to update all section headings at once.
*/
export default function SectionHeading({ children, className }: SectionHeadingProps): import("react/jsx-runtime").JSX.Element;
export {};