UNPKG

@hitachivantara/uikit-react-core

Version:

Core React components for the NEXT Design System.

25 lines (24 loc) 534 B
import { createClasses } from "@hitachivantara/uikit-react-utils"; const { staticClasses, useClasses } = createClasses( "HvOverflowTooltip", { tooltipData: {}, tooltipAnchor: { whiteSpace: "nowrap", overflow: "hidden", textOverflow: "ellipsis", maxWidth: "100%", width: "fit-content" }, tooltipAnchorParagraph: { overflow: "hidden", display: "-webkit-box", WebkitLineClamp: 3, WebkitBoxOrient: "vertical" } } ); export { staticClasses, useClasses };