styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 1.02 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var CameraOff = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }),
React.createElement("path", { d: "M19.586 21H3a1 1 0 01-1-1V6a1 1 0 011-1h.586L1.393 2.808l1.415-1.415 19.799 19.8-1.415 1.414L19.586 21zM7.556 8.97a6 6 0 008.475 8.475l-1.417-1.417a4 4 0 01-5.642-5.642L7.555 8.97zM22 17.785l-4.045-4.045a6 6 0 00-6.695-6.695L8.106 3.892 9 3h6l2 2h4a1 1 0 011 1v11.786zm-8.492-8.492a4.013 4.013 0 012.198 2.198l-2.198-2.198z", key: "k1" })));
});
CameraOff.displayName = 'CameraOff';
export var CameraOffDimensions = { height: 24, width: 24 };