File size: 2,030 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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
import { defineRecipe } from "../def"
export const radiomarkRecipe = defineRecipe({
className: "radiomark",
base: {
display: "inline-flex",
alignItems: "center",
justifyContent: "center",
flexShrink: 0,
verticalAlign: "top",
color: "white",
borderWidth: "1px",
borderColor: "transparent",
borderRadius: "full",
cursor: "radio",
_focusVisible: {
outline: "2px solid",
outlineColor: "colorPalette.focusRing",
outlineOffset: "2px",
},
_invalid: {
colorPalette: "red",
borderColor: "red.500",
},
_disabled: {
opacity: "0.5",
cursor: "disabled",
},
"& .dot": {
height: "100%",
width: "100%",
borderRadius: "full",
bg: "currentColor",
scale: "0.4",
},
},
variants: {
variant: {
solid: {
borderWidth: "1px",
borderColor: "border",
_checked: {
bg: "colorPalette.solid",
color: "colorPalette.contrast",
borderColor: "colorPalette.solid",
},
},
subtle: {
borderWidth: "1px",
bg: "colorPalette.muted",
borderColor: "colorPalette.muted",
color: "transparent",
_checked: {
color: "colorPalette.fg",
},
},
outline: {
borderWidth: "1px",
borderColor: "inherit",
_checked: {
color: "colorPalette.fg",
borderColor: "colorPalette.solid",
},
"& .dot": {
scale: "0.6",
},
},
inverted: {
bg: "bg",
borderWidth: "1px",
borderColor: "inherit",
_checked: {
color: "colorPalette.solid",
borderColor: "currentcolor",
},
},
},
size: {
xs: {
boxSize: "3",
},
sm: {
boxSize: "4",
},
md: {
boxSize: "5",
},
lg: {
boxSize: "6",
},
},
},
defaultVariants: {
variant: "solid",
size: "md",
},
})
|