UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.75 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconOpacity = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("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", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.78033 3.21967C7.07322 3.51256 7.07322 3.98744 6.78033 4.28033L4.28033 6.78033C3.98744 7.07322 3.51256 7.07322 3.21967 6.78033C2.92678 6.48744 2.92678 6.01256 3.21967 5.71967L5.71967 3.21967C6.01256 2.92678 6.48744 2.92678 6.78033 3.21967ZM13.7803 3.21967C14.0732 3.51256 14.0732 3.98744 13.7803 4.28033L4.28033 13.7803C3.98744 14.0732 3.51256 14.0732 3.21967 13.7803C2.92678 13.4874 2.92678 13.0126 3.21967 12.7197L12.7197 3.21967C13.0126 2.92678 13.4874 2.92678 13.7803 3.21967ZM20.7803 3.21967C21.0732 3.51256 21.0732 3.98744 20.7803 4.28033L4.28033 20.7803C3.98744 21.0732 3.51256 21.0732 3.21967 20.7803C2.92678 20.4874 2.92678 20.0126 3.21967 19.7197L19.7197 3.21967C20.0126 2.92678 20.4874 2.92678 20.7803 3.21967ZM20.7803 10.2197C21.0732 10.5126 21.0732 10.9874 20.7803 11.2803L11.2803 20.7803C10.9874 21.0732 10.5126 21.0732 10.2197 20.7803C9.92678 20.4874 9.92678 20.0126 10.2197 19.7197L19.7197 10.2197C20.0126 9.92678 20.4874 9.92678 20.7803 10.2197ZM20.7803 17.2197C21.0732 17.5126 21.0732 17.9874 20.7803 18.2803L18.2803 20.7803C17.9874 21.0732 17.5126 21.0732 17.2197 20.7803C16.9268 20.4874 16.9268 20.0126 17.2197 19.7197L19.7197 17.2197C20.0126 16.9268 20.4874 16.9268 20.7803 17.2197Z" }) })); }; IconOpacity.iconName = "opacity"; export default IconOpacity;