@wordpress/components
Version:
UI components for WordPress.
37 lines (36 loc) • 740 B
JavaScript
// packages/components/src/color-picker/color-input.tsx
import { RgbInput } from "./rgb-input";
import { HslInput } from "./hsl-input";
import { HexInput } from "./hex-input";
import { jsx as _jsx } from "react/jsx-runtime";
var ColorInput = ({
colorType,
color,
onChange,
enableAlpha
}) => {
const props = {
color,
onChange,
enableAlpha
};
switch (colorType) {
case "hsl":
return /* @__PURE__ */ _jsx(HslInput, {
...props
});
case "rgb":
return /* @__PURE__ */ _jsx(RgbInput, {
...props
});
default:
case "hex":
return /* @__PURE__ */ _jsx(HexInput, {
...props
});
}
};
export {
ColorInput
};
//# sourceMappingURL=color-input.js.map