UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 2.02 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconSync = (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: "M19.9996 2.75C19.9996 2.33579 19.6638 2 19.2496 2C18.8354 2 18.4996 2.33579 18.4996 2.75V5.77504C17.4877 4.71844 16.2297 3.92069 14.8317 3.45722C13.1228 2.89066 11.2831 2.84969 9.55065 3.33959C7.81816 3.82949 6.27242 4.82775 5.11322 6.20535C3.95401 7.58295 3.23463 9.27656 3.04804 11.0673C3.00512 11.4793 3.3043 11.8481 3.71628 11.891C4.12826 11.9339 4.49704 11.6347 4.53997 11.2227C4.69545 9.73047 5.29494 8.31913 6.26094 7.17113C7.22695 6.02313 8.51506 5.19124 9.95881 4.78299C11.4026 4.37474 12.9356 4.40889 14.3597 4.88102C15.3825 5.22012 16.3155 5.77396 17.0986 6.5H14.7496C14.3354 6.5 13.9996 6.83579 13.9996 7.25C13.9996 7.66421 14.3354 8 14.7496 8H19.2496C19.6638 8 19.9996 7.66421 19.9996 7.25V2.75Z" }), _jsx("path", { d: "M9.63947 19.119C11.0636 19.5911 12.5966 19.6253 14.0404 19.217C15.4841 18.8088 16.7722 17.9769 17.7382 16.8289C18.7042 15.6809 19.3037 14.2695 19.4592 12.7773C19.5021 12.3653 19.8709 12.0661 20.2829 12.109C20.6949 12.1519 20.994 12.5207 20.9511 12.9327C20.7645 14.7234 20.0452 16.4171 18.8859 17.7947C17.7267 19.1722 16.181 20.1705 14.4485 20.6604C12.716 21.1503 10.8764 21.1093 9.16745 20.5428C7.76946 20.0793 6.51147 19.2816 5.49958 18.225L5.49958 20.25C5.49958 20.6642 5.1638 21 4.74958 21C4.33537 21 3.99958 20.6642 3.99958 20.25L3.99958 15.75C3.99958 15.3358 4.33537 15 4.74958 15H9.24958C9.6638 15 9.99958 15.3358 9.99958 15.75C9.99958 16.1642 9.6638 16.5 9.24958 16.5H5.99213C6.01306 16.5214 6.03294 16.5442 6.05162 16.5686C6.96554 17.7584 8.21534 18.6468 9.63947 19.119Z" })] })); }; IconSync.iconName = "sync"; export default IconSync;