7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
|
export type BreakPoint = "xs" | "sm" | "md" | "lg" | "xl";
|
||
|
|
||
|
export type Responsive = {
|
||
|
span?: number;
|
||
|
offset?: number;
|
||
|
};
|