UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 841 B
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", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "m5.928 3.033 10.003 5.192c1.438.747 1.438 2.804 0 3.55L5.928 16.968c-1.657.86-3.485-.82-2.768-2.543L5 10 3.16 5.576C2.443 3.85 4.271 2.172 5.928 3.033M5.875 10.5 4.084 14.81c-.359.862.555 1.701 1.384 1.27l10.002-5.191a1 1 0 0 0 0-1.775L5.468 3.92c-.83-.43-1.743.41-1.384 1.272L5.874 9.5H10.5a.5.5 0 1 1 0 1z", clipRule: "evenodd" }) })); }; IconSend.iconName = "send"; export default IconSend;