/** Coerces a value to a CSS pixel value. */functioncoerceCssPixelValue(value) {
if (value == null) {
return'';
}
returntypeof value === 'string' ? value : `${value}px`;
}
export { coerceCssPixelValue as c };
//# sourceMappingURL=css-pixel-value-C_HEqLhI.mjs.map