@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.06 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconSkipBack = (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: "M2 3.75C2 3.33579 2.33579 3 2.75 3C3.16422 3 3.5 3.33579 3.5 3.75V20.25C3.5 20.6642 3.16422 21 2.75 21C2.33579 21 2 20.6642 2 20.25V3.75Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7 10.268C5.66667 11.0378 5.66667 12.9623 7 13.7321L19 20.6603C20.3333 21.4301 22 20.4678 22 18.9282V5.0718C22 3.5322 20.3333 2.56995 19 3.33975L7 10.268ZM7.75 12.433L19.75 19.3612C20.0833 19.5537 20.5 19.3131 20.5 18.9282L20.5 5.0718C20.5 4.6869 20.0833 4.44634 19.75 4.63879L7.75 11.567C7.41667 11.7594 7.41667 12.2406 7.75 12.433Z" })] }));
};
IconSkipBack.iconName = "skip-back";
export default IconSkipBack;