Skip to content

Commit

Permalink
feat: add lightbulb icon (#612)
Browse files Browse the repository at this point in the history
add lightbulb icon
  • Loading branch information
MatthewPiatetsky committed Feb 1, 2021
1 parent aa29f96 commit 653d1b6
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 0 deletions.
18 changes: 18 additions & 0 deletions icons/es5/Lightbulb.js
@@ -0,0 +1,18 @@
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }

import * as React from "react";

function SvgLightbulb(props) {
return /*#__PURE__*/React.createElement("svg", _extends({
width: 24,
height: 24,
viewBox: "0 0 24 24",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M20.45 5.41L19.04 4l-1.79 1.8 1.41 1.41 1.79-1.8zM13 1.5h-2v2.95h2V1.5zm7 11.95h3v-2h-3v2zM9 17.64v4.81h6v-4.81c1.79-1.04 3-2.97 3-5.19 0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19zm-5-4.19v-2H1v2h3zm2.76-7.66l-1.79-1.8L3.56 5.4l1.8 1.79 1.4-1.4z",
fill: "currentColor"
}));
}

export default SvgLightbulb;
1 change: 1 addition & 0 deletions icons/es5/index.js
Expand Up @@ -38,6 +38,7 @@ export { default as Info } from './Info';
export { default as Institution } from './Institution';
export { default as Language } from './Language';
export { default as Laptop } from './Laptop';
export { default as Lightbulb } from './Lightbulb';
export { default as Menu } from './Menu';
export { default as Money } from './Money';
export { default as MoneyFilled } from './MoneyFilled';
Expand Down
21 changes: 21 additions & 0 deletions icons/jsx/Lightbulb.jsx
@@ -0,0 +1,21 @@
import * as React from "react";

function SvgLightbulb(props) {
return (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M20.45 5.41L19.04 4l-1.79 1.8 1.41 1.41 1.79-1.8zM13 1.5h-2v2.95h2V1.5zm7 11.95h3v-2h-3v2zM9 17.64v4.81h6v-4.81c1.79-1.04 3-2.97 3-5.19 0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19zm-5-4.19v-2H1v2h3zm2.76-7.66l-1.79-1.8L3.56 5.4l1.8 1.79 1.4-1.4z"
fill="currentColor"
/>
</svg>
);
}

export default SvgLightbulb;
1 change: 1 addition & 0 deletions icons/jsx/index.jsx
Expand Up @@ -38,6 +38,7 @@ export { default as Info } from './Info';
export { default as Institution } from './Institution';
export { default as Language } from './Language';
export { default as Laptop } from './Laptop';
export { default as Lightbulb } from './Lightbulb';
export { default as Menu } from './Menu';
export { default as Money } from './Money';
export { default as MoneyFilled } from './MoneyFilled';
Expand Down
3 changes: 3 additions & 0 deletions icons/svg/lightbulb.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 653d1b6

Please sign in to comment.