@brizy/ui
Version:
React elements in Brizy style
15 lines (14 loc) • 566 B
JavaScript
import { BRZ_PREFIX } from "../constants";
export const getRounded = (rounded) => {
return rounded
? {
[`--${BRZ_PREFIX}-tooltip-rounded`]: "80px",
[`--${BRZ_PREFIX}-tooltip-fontSize`]: "13px",
[`--${BRZ_PREFIX}-tooltip-fontWeight`]: "700",
[`--${BRZ_PREFIX}-tooltip-lineHeight`]: "16px",
[`--${BRZ_PREFIX}-tooltip-padding`]: "7px 17px 5px",
[`--${BRZ_PREFIX}-tooltip-letterSpacing`]: "0",
[`--${BRZ_PREFIX}-tooltip-maxWidth`]: "none",
}
: undefined;
};