flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
31 lines (28 loc) • 803 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import { forwardRef } from 'react';
const ArrowRightIcon = forwardRef((props, ref) => /* @__PURE__ */ jsx(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
fill: "currentColor",
stroke: "currentColor",
strokeWidth: 0,
viewBox: "0 0 20 20",
ref,
...props,
children: /* @__PURE__ */ jsx(
"path",
{
fillRule: "evenodd",
stroke: "none",
d: "M10.293 3.293a1 1 0 0 1 1.414 0l6 6a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1-1.414-1.414L14.586 11H3a1 1 0 1 1 0-2h11.586l-4.293-4.293a1 1 0 0 1 0-1.414z",
clipRule: "evenodd"
}
)
}
));
ArrowRightIcon.displayName = "ArrowRightIcon";
export { ArrowRightIcon };
//# sourceMappingURL=arrow-right-icon.js.map