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) • 458 B
TypeScript
import { default as React } from 'react';
interface ScaledGridWrapperProps {
scaleFactor: number;
designWidth: number;
children: React.ReactNode;
}
/**
* Wrapper component that scales the grid using CSS transform
* Handles height compensation to prevent overflow/whitespace issues
*/
export default function ScaledGridWrapper({ scaleFactor, designWidth, children }: ScaledGridWrapperProps): import("react/jsx-runtime").JSX.Element;
export {};