users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/camera-off.jsx
c589cef163fddefcca977f130319f6b5e3657621
· 444 B · 9 lines
raw
| 1 | import Icon from "../icon.jsx"; |
| 2 | |
| 3 | export default function CameraOff(props) { |
| 4 | return ( |
| 5 | <Icon {...props}> |
| 6 | <path d="M21 14.2V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5V7c0-.55-.45-1-1-1h-5.61l8.91 8.91c.62.63 1.7.18 1.7-.71zM2.71 2.56c-.39.39-.39 1.02 0 1.41L4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18l2.48 2.48c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 2.56c-.39-.39-1.02-.39-1.41 0z" /> |
| 7 | </Icon> |
| 8 | ); |
| 9 | } |