@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 822 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconMoveToCenter = (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: "M8.28 3.22a.75.75 0 0 0-1.06 1.06l4.25 4.25a.75.75 0 0 0 1.06 0l4.25-4.25a.75.75 0 0 0-1.06-1.06L12 6.94zM20.25 12.75a.75.75 0 0 0 0-1.5H3.75a.75.75 0 0 0 0 1.5zM7.22 20.78a.75.75 0 0 0 1.06 0L12 17.06l3.72 3.72a.75.75 0 1 0 1.06-1.06l-4.25-4.25a.75.75 0 0 0-1.06 0l-4.25 4.25a.75.75 0 0 0 0 1.06" }) }));
};
IconMoveToCenter.iconName = "move-to-center";
export default IconMoveToCenter;