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