@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
21 lines (17 loc) • 537 B
JavaScript
"use client";
import { Icon as Icon$1, withContext } from "./icon.js";
import { jsx } from "react/jsx-runtime";
import { Icon } from "lucide-react";
//#region src/components/icon/lucide-icon.tsx
/**
* `LucideIcon` is a component for using [Lucide lab](https://github.com/lucide-icons/lucide-lab) icons.
*
* @see https://yamada-ui.com/docs/components/icon
*/
const LucideIcon = withContext((props) => /* @__PURE__ */ jsx(Icon$1, {
as: Icon,
...props
}))();
//#endregion
export { LucideIcon };
//# sourceMappingURL=lucide-icon.js.map