styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 808 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var VideoCamera = 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 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M6 4.5a2.5 2.5 0 115 0 2.5 2.5 0 01-5 0zm-6 0a2.5 2.5 0 115 0 2.5 2.5 0 01-5 0zm12 5V8c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-1.5l4 2.5V7l-4 2.5zM10 12H2V9h8v3z", key: "k0" })));
});
VideoCamera.displayName = 'VideoCamera';
export var VideoCameraDimensions = { height: 16, width: 16 };