UNPKG

@hitachivantara/uikit-react-core

Version:
28 lines (27 loc) 706 B
import { theme } from "@hitachivantara/uikit-styles"; import { createClasses } from "@hitachivantara/uikit-react-utils"; //#region src/FormElement/WarningText/WarningText.styles.tsx var { staticClasses, useClasses } = createClasses("HvWarningText", { root: { display: "none", color: theme.form.errorColor }, defaultIcon: { margin: 6 }, warningText: { ...theme.typography.caption1, color: "inherit", paddingRight: theme.space.xs }, show: { display: "flex" }, topGutter: { paddingTop: "3px" }, hideText: { width: 0, height: 0, padding: 0, margin: 0, overflow: "hidden" }, topBorder: { borderTop: "1px solid currentcolor" } }); //#endregion export { staticClasses, useClasses };