UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 825 B
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconShareWeb = (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 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M20 6a3 3 0 0 1-5.332 1.887l-5.824 3.155a3 3 0 0 1 0 1.916l5.824 3.155a3 3 0 1 1-.623 1.368L8.02 14.218a3 3 0 1 1 0-4.436l6.025-3.263A3 3 0 1 1 20 6m-1.5 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m-11-6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0", clipRule: "evenodd" }) })); }; IconShareWeb.iconName = "share-web"; export default IconShareWeb;