@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 868 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Lightbulb = /*#__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 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M24 4a14.5 14.5 0 0 0-9.79 25.2c.45.4.75.87.87 1.34l1.27 4.96h15.3l1.27-4.96c.12-.47.42-.93.87-1.34A14.5 14.5 0 0 0 24 4Zm7 34H17l.61 2.43a4.75 4.75 0 0 0 4.6 3.57h3.57a4.75 4.75 0 0 0 4.6-3.57l.63-2.43Z"
}));
});
Lightbulb.displayName = 'Lightbulb';
export var LightbulbDimensions = {
height: 48,
width: 48
};