Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 2x | import * as React from 'react'; import { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } const SvgIconManager = ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => ( <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' aria-labelledby={titleId} {...props}> {title ? <title id={titleId}>{title}</title> : null} <path d='M11.992 2.993a.5.5 0 0 0-.492.507v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.508-.507M6.935 4.935a.5.5 0 0 0-.35.858l2.122 2.121a.5.5 0 1 0 .707-.707L7.293 5.086a.5.5 0 0 0-.358-.151m10.116 0a.5.5 0 0 0-.344.15l-2.121 2.122a.5.5 0 1 0 .707.707l2.121-2.121a.5.5 0 0 0-.363-.858M12 8c-.77 0-1.444.316-1.873.799A2.55 2.55 0 0 0 9.5 10.5c0 .604.198 1.218.627 1.701.43.483 1.102.799 1.873.799s1.444-.316 1.873-.799.627-1.097.627-1.701-.198-1.218-.627-1.701C13.443 8.316 12.771 8 12 8m0 1.5c.396 0 .598.121.752.295.154.173.248.434.248.705s-.094.532-.248.705c-.154.174-.356.295-.752.295s-.598-.121-.752-.295A1.08 1.08 0 0 1 11 10.5c0-.27.094-.532.248-.705.154-.174.356-.295.752-.295M4.5 11c-.77 0-1.444.316-1.873.799A2.55 2.55 0 0 0 2 13.5c0 .604.198 1.218.627 1.701.43.483 1.102.799 1.873.799s1.444-.316 1.873-.799S7 14.104 7 13.5s-.198-1.218-.627-1.701C5.943 11.316 5.271 11 4.5 11m15 0c-.77 0-1.444.316-1.873.799A2.55 2.55 0 0 0 17 13.5c0 .604.198 1.218.627 1.701.43.483 1.102.799 1.873.799s1.444-.316 1.873-.799S22 14.104 22 13.5s-.198-1.218-.627-1.701c-.43-.483-1.102-.799-1.873-.799m-15 1.5c.396 0 .598.121.752.295.154.173.248.434.248.705s-.094.532-.248.705c-.154.174-.356.295-.752.295s-.598-.121-.752-.295A1.08 1.08 0 0 1 3.5 13.5c0-.27.094-.532.248-.705.154-.174.356-.295.752-.295m15 0c.396 0 .598.121.752.295.154.173.248.434.248.705s-.094.532-.248.705c-.154.174-.356.295-.752.295s-.598-.121-.752-.295a1.08 1.08 0 0 1-.248-.705c0-.27.094-.532.248-.705.154-.174.356-.295.752-.295M9.026 14c-.834 0-1.526.692-1.526 1.526v1.485c-.01 0-.016-.011-.026-.011H1.526C.692 17 0 17.692 0 18.526v.949c0 .914.577 1.701 1.385 2.216.807.515 1.878.81 3.115.81s2.307-.295 3.114-.81c.258-.164.436-.396.636-.61.2.214.377.446.635.61.807.515 1.878.81 3.115.81s2.307-.295 3.114-.81c.258-.164.436-.396.636-.61.2.214.377.446.635.61.807.515 1.878.81 3.115.81s2.307-.295 3.114-.81C23.422 21.177 24 20.39 24 19.475v-.949c0-.834-.692-1.526-1.526-1.526h-5.948c-.01 0-.016.01-.026.01v-1.484c0-.834-.692-1.526-1.526-1.526zm0 1.5h5.948c.023 0 .026.003.026.026v3.949c0 .276-.181.627-.691.952S12.994 21 12 21s-1.799-.249-2.309-.574C9.181 20.1 9 19.75 9 19.475v-3.949c0-.023.003-.026.026-.026m-7.5 3h5.948c.023 0 .026.003.026.026v.949c0 .276-.181.627-.691.952S5.494 21 4.5 21s-1.799-.249-2.309-.574c-.51-.326-.691-.676-.691-.952v-.949c0-.023.003-.026.026-.026m15 0h5.948c.023 0 .026.003.026.026v.949c0 .276-.181.627-.691.952S20.494 21 19.5 21s-1.799-.249-2.309-.574c-.51-.326-.691-.676-.691-.952v-.949c0-.023.003-.026.026-.026' /> </svg> ); export default SvgIconManager; |