File size: 1,527 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
import { defineRecipe } from "../def"
export const inputAddonRecipe = defineRecipe({
className: "input-addon",
base: {
flex: "0 0 auto",
width: "auto",
display: "flex",
alignItems: "center",
whiteSpace: "nowrap",
alignSelf: "stretch",
borderRadius: "l2",
},
variants: {
size: {
"2xs": {
textStyle: "xs",
px: "2",
"--input-height": "sizes.7",
},
xs: {
textStyle: "xs",
px: "2",
"--input-height": "sizes.8",
},
sm: {
textStyle: "sm",
px: "2.5",
"--input-height": "sizes.9",
},
md: {
textStyle: "sm",
px: "3",
"--input-height": "sizes.10",
},
lg: {
textStyle: "md",
px: "4",
"--input-height": "sizes.11",
},
xl: {
textStyle: "md",
px: "4.5",
"--input-height": "sizes.12",
},
"2xl": {
textStyle: "lg",
px: "5",
"--input-height": "sizes.16",
},
},
variant: {
outline: {
borderWidth: "1px",
borderColor: "border",
bg: "bg.muted",
},
subtle: {
borderWidth: "1px",
borderColor: "transparent",
bg: "bg.emphasized",
},
flushed: {
borderBottom: "1px solid",
borderColor: "inherit",
borderRadius: "0",
px: "0",
bg: "transparent",
},
},
},
defaultVariants: {
size: "md",
variant: "outline",
},
})
|