feature
deskripsi: - new component stack
This commit is contained in:
19
components/Stack/stack-types.ts
Normal file
19
components/Stack/stack-types.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
// types/stack.types.ts
|
||||
|
||||
export type AlignType =
|
||||
| "stretch"
|
||||
| "flex-start"
|
||||
| "center"
|
||||
| "flex-end"
|
||||
| "baseline";
|
||||
|
||||
export type JustifyType =
|
||||
| "flex-start"
|
||||
| "center"
|
||||
| "flex-end"
|
||||
| "space-between"
|
||||
| "space-around"
|
||||
| "space-evenly";
|
||||
|
||||
export type GapSizeType = "xs" | "sm" | "md" | "lg" | "xl" | number;
|
||||
// | string;
|
||||
Reference in New Issue
Block a user