Files
web/components/TempDesignSystem/Grids/Stackable/stackable.ts
Matilda Landström bb422f804d Merged in feat/card-grid-ui (pull request #332)
Feat/card grid ui

Approved-by: Simon.Emanuelsson
2024-07-09 11:16:44 +00:00

10 lines
267 B
TypeScript

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