Files
web/components/TempDesignSystem/Grids/Stackable/stackable.ts
2024-10-15 13:09:45 +02:00

8 lines
248 B
TypeScript

import { stackableGridVariants } from "./variants"
import type { VariantProps } from "class-variance-authority"
export interface StackableGridProps
extends React.HTMLAttributes<HTMLDivElement>,
VariantProps<typeof stackableGridVariants> {}