UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 698 B
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconShareWebFilled = (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", { d: "M17 9a3 3 0 1 0-2.955-2.481L8.02 9.782a3 3 0 1 0 0 4.436l6.025 3.263Q14 17.734 14 18a3 3 0 1 0 .668-1.887l-5.824-3.155a3 3 0 0 0 0-1.916l5.824-3.155A3 3 0 0 0 17 9" }) })); }; IconShareWebFilled.iconName = "share-web--filled"; export default IconShareWebFilled;