@brizy/ui
Version:
React elements in Brizy style
13 lines (12 loc) • 358 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getWidthStyle = void 0;
const constants_1 = require("../constants");
const getWidthStyle = (width) => {
return width
? {
[`--${constants_1.BRZ_PREFIX}-popover--width`]: width,
}
: undefined;
};
exports.getWidthStyle = getWidthStyle;