UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.25 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconDisplayProjectCheck = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("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: "M9 3a2 2 0 0 0-2 2v.75a.75.75 0 0 0 1.5 0V5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-.496.5c.528.22 1.021.509 1.468.854.328-.356.528-.832.528-1.354V5a2 2 0 0 0-2-2z" }), _jsx("path", { d: "M17 10v1.019q-.782.061-1.5.294V10a.5.5 0 0 0-.5-.5H4a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5h7.076a6.6 6.6 0 0 0-.057 1.5H4a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2M11.25 19.5q.033 0 .064.003.207.634.53 1.204a.75.75 0 0 1-.594.293h-3.5a.75.75 0 0 1 0-1.5z" }), _jsx("path", { fillRule: "evenodd", d: "M17.5 23a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11m-.646-3.146 3.5-3.5a.5.5 0 0 0-.708-.708L16.5 18.793l-1.646-1.647a.5.5 0 0 0-.708.708l2 2a.5.5 0 0 0 .708 0", clipRule: "evenodd" })] })); }; IconDisplayProjectCheck.iconName = "display-project-check"; export default IconDisplayProjectCheck;