@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
33 lines (29 loc) • 759 B
JavaScript
"use client";
;
var jsxRuntime = require('react/jsx-runtime');
var React = require('react');
var icon = require('./icon.cjs');
function createIcon(options) {
const {
viewBox = "0 0 24 24",
d: pathDefinition,
displayName,
defaultProps = {}
} = options;
const path = React.Children.toArray(options.path);
const Comp = React.forwardRef((props, ref) => /* @__PURE__ */ jsxRuntime.jsx(
icon.Icon,
{
ref,
asChild: false,
viewBox,
...defaultProps,
...props,
children: path.length ? path : /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: pathDefinition })
}
));
Comp.displayName = displayName;
return Comp;
}
exports.createIcon = createIcon;
;