File size: 769 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 |
import { defineRecipe } from "../def"
export const linkRecipe = defineRecipe({
className: "link",
base: {
display: "inline-flex",
alignItems: "center",
outline: "none",
gap: "1.5",
cursor: "pointer",
borderRadius: "l1",
focusRing: "outside",
},
variants: {
variant: {
underline: {
color: "colorPalette.fg",
textDecoration: "underline",
textUnderlineOffset: "3px",
textDecorationColor: "currentColor/20",
},
plain: {
color: "colorPalette.fg",
_hover: {
textDecoration: "underline",
textUnderlineOffset: "3px",
textDecorationColor: "currentColor/20",
},
},
},
},
defaultVariants: {
variant: "plain",
},
})
|