@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
20 lines (18 loc) • 490 B
JavaScript
import { defineComponentStyle } from "../../core/system/config.js";
//#region src/components/mark/mark.style.ts
const markStyle = defineComponentStyle({
base: {
bg: "transparent",
whiteSpace: "nowrap"
},
variants: {
accent: { color: "colorScheme.solid" },
solid: { layerStyle: "solid" },
subtle: { layerStyle: "subtle" },
text: { fontWeight: "semibold" }
},
defaultProps: { variant: "subtle" }
});
//#endregion
export { markStyle };
//# sourceMappingURL=mark.style.js.map