@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 895 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconArrowBottomLeft = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.8536 5.14645C15.0488 5.34171 15.0488 5.65829 14.8536 5.85355L6.70711 14L12 14C12.2761 14 12.5 14.2239 12.5 14.5C12.5 14.7761 12.2761 15 12 15L5.5 15C5.22386 15 5 14.7761 5 14.5L5 8C5 7.72386 5.22386 7.5 5.5 7.5C5.77614 7.5 6 7.72386 6 8L6 13.2929L14.1464 5.14645C14.3417 4.95118 14.6583 4.95118 14.8536 5.14645Z" }) }));
};
IconArrowBottomLeft.iconName = "arrow-bottom-left";
export default IconArrowBottomLeft;