@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 934 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Camera = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 28 28"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M16.95 2.5c.78 0 1.5.4 1.91 1.06L20.38 6h2.37C24.55 6 26 7.45 26 9.25v12.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 21.75V9.25C2 7.45 3.46 6 5.25 6h2.57L9.2 3.62c.4-.7 1.14-1.12 1.95-1.12h5.8zM14 9.5a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 1.5a4 4 0 1 1 0 8 4 4 0 0 1 0-8z"
}));
});
Camera.displayName = 'Camera';
export var CameraDimensions = {
height: 28,
width: 28
};