@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
36 lines (34 loc) • 766 B
JavaScript
const require_config = require('../../core/system/config.cjs');
//#region src/components/link/link.style.ts
const linkStyle = require_config.defineComponentStyle({
base: {
alignItems: "center",
cursor: "pointer",
display: "inline-flex",
gap: "3",
rounded: "l1"
},
variants: {
plain: {
color: "colorScheme.solid",
_hover: {
textDecoration: "underline",
textDecorationColor: "currentColor",
textUnderlineOffset: "3px"
}
},
underline: {
color: "colorScheme.solid",
textDecoration: "underline",
textDecorationColor: "currentColor",
textUnderlineOffset: "3px"
}
},
defaultProps: {
colorScheme: "link",
variant: "plain"
}
});
//#endregion
exports.linkStyle = linkStyle;
//# sourceMappingURL=link.style.cjs.map