UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 1.96 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconSecurity = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; switch (props?.size) { case "l": 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: "M15.53 10.28a.75.75 0 0 0-1.06-1.06L11 12.69l-1.47-1.47a.75.75 0 1 0-1.06 1.06l2 2a.75.75 0 0 0 1.06 0z" }), _jsx("path", { fillRule: "evenodd", d: "m4.029 6.429 7-3.89a2 2 0 0 1 1.942 0l7 3.89c.635.352 1.038 1.025.994 1.75-.496 8.203-6.09 12.194-8.182 13.407a1.55 1.55 0 0 1-1.566 0C9.126 20.373 3.531 16.382 3.035 8.18c-.044-.725.359-1.398.994-1.75m.728 1.31 7-3.888a.5.5 0 0 1 .486 0l7 3.889c.174.097.23.248.225.348-.452 7.466-5.527 11.092-7.438 12.2-.018.011-.027.011-.03.011s-.012 0-.03-.01c-1.911-1.109-6.986-4.735-7.438-12.2-.006-.1.05-.252.225-.35", clipRule: "evenodd" })] })); default: return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M12.354 8.854a.5.5 0 0 0-.707-.708L9 10.793 7.854 9.646a.5.5 0 0 0-.708.707l1.5 1.5a.5.5 0 0 0 .708 0z" }), _jsx("path", { fillRule: "evenodd", d: "m9.008 2.567-5 2.857c-.623.356-1.017 1.024-.972 1.74.435 6.865 4.669 9.694 6.314 10.54.411.212.889.212 1.3 0 1.645-.846 5.879-3.675 6.314-10.54.045-.716-.349-1.384-.972-1.74l-5-2.857a2 2 0 0 0-1.984 0M4.504 6.292l5-2.857a1 1 0 0 1 .992 0l5 2.857c.322.184.489.507.47.809-.405 6.389-4.311 8.962-5.774 9.715a.41.41 0 0 1-.384 0C8.345 16.063 4.439 13.49 4.034 7.1c-.019-.302.148-.625.47-.809", clipRule: "evenodd" })] })); } }; IconSecurity.iconName = "security"; export default IconSecurity;