UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.07 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconSend = (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: "M5.92838 3.03264L15.9305 8.22499C17.3685 8.97151 17.3685 11.0286 15.9305 11.7751L5.92837 16.9675C4.27097 17.8279 2.44321 16.1489 3.16016 14.4246L4.99982 10.0001L3.16016 5.57556C2.44321 3.85124 4.27097 2.17224 5.92838 3.03264ZM5.87492 10.5001L4.08353 14.8085C3.72505 15.6706 4.63893 16.5101 5.46763 16.0799L15.4697 10.8876C16.1887 10.5143 16.1887 9.48578 15.4697 9.11253L5.46764 3.92018C4.63893 3.48997 3.72505 4.32948 4.08352 5.19163L5.87492 9.50006H10.5C10.7762 9.50006 11 9.72392 11 10.0001C11 10.2762 10.7762 10.5001 10.5 10.5001H5.87492Z" }) })); }; IconSend.iconName = "send"; export default IconSend;