♻️ Standard avatar sizes (#1375)

This commit is contained in:
Luke Vella 2024-10-04 18:53:29 +01:00 committed by GitHub
parent b0e0a8f09c
commit 3c340bdf90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 120 additions and 275 deletions

View file

@ -39,8 +39,11 @@ const flexVariants = cva("box-border flex justify-start", {
},
gap: {
none: "gap-0",
md: "gap-2.5",
lg: "gap-4",
xs: "gap-1",
sm: "gap-2",
md: "gap-4",
lg: "gap-6",
xl: "gap-8",
},
},
defaultVariants: {
@ -48,7 +51,7 @@ const flexVariants = cva("box-border flex justify-start", {
align: "center",
justify: "start",
wrap: "noWrap",
gap: "md",
gap: "none",
},
});