@heroui/shared-icons
Version:
Internal icons set, commonly used in the components stories
25 lines (23 loc) • 518 B
JavaScript
// src/chevron-left.tsx
import { jsx } from "react/jsx-runtime";
var ChevronLeftIcon = (props) => /* @__PURE__ */ jsx(
"svg",
{
"aria-hidden": "true",
fill: "none",
focusable: "false",
height: "1em",
role: "presentation",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: "1.5",
viewBox: "0 0 24 24",
width: "1em",
...props,
children: /* @__PURE__ */ jsx("path", { d: "m15 18-6-6 6-6" })
}
);
export {
ChevronLeftIcon
};