@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
35 lines (30 loc) • 844 B
JavaScript
import { createStaticStyles } from "antd-style";
//#region src/Checkbox/style.ts
const styles = createStaticStyles(({ css: css$1, cssVar: cssVar$1 }) => {
return {
checked: css$1`
border-color: ${cssVar$1.colorPrimary};
color: ${cssVar$1.colorBgLayout};
background-color: ${cssVar$1.colorPrimary};
`,
disabled: css$1`
cursor: not-allowed;
border-color: ${cssVar$1.colorFill};
color: ${cssVar$1.colorText};
opacity: 0.25;
background-color: ${cssVar$1.colorFill};
`,
indeterminate: css$1`
border-color: ${cssVar$1.colorPrimary};
color: ${cssVar$1.colorBgLayout};
background-color: ${cssVar$1.colorPrimary};
`,
root: css$1`
cursor: pointer;
display: inline-flex;
`
};
});
//#endregion
export { styles };
//# sourceMappingURL=style.mjs.map