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