@hitachivantara/uikit-react-core
Version:
UI Kit Core React components.
23 lines (22 loc) • 592 B
JavaScript
import { theme } from "@hitachivantara/uikit-styles";
import { createClasses } from "@hitachivantara/uikit-react-utils";
//#region src/Typography/Typography.styles.ts
var { useClasses, staticClasses } = createClasses("HvTypography", {
root: {
fontFamily: theme.fontFamily.body,
color: "inherit"
},
disabled: { color: theme.colors.textDisabled },
isLink: {
cursor: "pointer",
color: theme.colors.primary,
textDecoration: "underline"
},
noWrap: {
overflow: "hidden",
textOverflow: "ellipsis",
whiteSpace: "nowrap"
}
});
//#endregion
export { staticClasses, useClasses };