styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 903 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Projector = 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: "M11.112 12a4.502 4.502 0 008.776 0H22v8a1 1 0 01-1 1H3a1 1 0 01-1-1v-8h9.112zM5 16h2v2H5v-2zm10.5-2.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5zM11.112 10H2V4a1 1 0 011-1h18a1 1 0 011 1v6h-2.112a4.502 4.502 0 00-8.776 0z", key: "k1" })));
});
Projector.displayName = 'Projector';
export var ProjectorDimensions = { height: 24, width: 24 };