UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 888 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconSkipForwardFilled = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M22 3.75C22 3.33579 21.6642 3 21.25 3C20.8358 3 20.5 3.33579 20.5 3.75V20.25C20.5 20.6642 20.8358 21 21.25 21C21.6642 21 22 20.6642 22 20.25V3.75Z" }), _jsx("path", { d: "M17 10.268C18.3333 11.0378 18.3333 12.9623 17 13.7321L5 20.6603C3.66667 21.4301 2 20.4678 2 18.9282V5.0718C2 3.5322 3.66667 2.56995 5 3.33975L17 10.268Z" })] })); }; IconSkipForwardFilled.iconName = "skip-forward--filled"; export default IconSkipForwardFilled;