Files
pqs-9100_client/frontend/src/components/Grid/interface/index.ts

7 lines
126 B
TypeScript
Raw Normal View History

2024-08-26 20:05:04 +08:00
export type BreakPoint = "xs" | "sm" | "md" | "lg" | "xl";
export type Responsive = {
span?: number;
offset?: number;
};