@brizy/ui
Version:
React elements in Brizy style
11 lines (10 loc) • 304 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isHex = void 0;
var hex;
(function (hex) {
hex["hex"] = "hex";
})(hex || (hex = {}));
const hexRegex = /^#(?:[A-Fa-f0-9]{3}){1,2}$/;
const isHex = (colorString) => hexRegex.test(colorString);
exports.isHex = isHex;