Skip to content

Commit

Permalink
feat: add five icons (#726)
Browse files Browse the repository at this point in the history
Article, Class, Edit, PhotoCamera, VideoCamera
  • Loading branch information
Adam Butterworth committed May 20, 2021
1 parent 829e606 commit d7bead1
Show file tree
Hide file tree
Showing 17 changed files with 219 additions and 0 deletions.
18 changes: 18 additions & 0 deletions icons/es5/Article.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 SvgArticle(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: "M3 3v18h18V3H3zm11 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z",
fill: "currentColor"
}));
}

export default SvgArticle;
18 changes: 18 additions & 0 deletions icons/es5/Class.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 SvgClass(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 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4z",
fill: "currentColor"
}));
}

export default SvgClass;
18 changes: 18 additions & 0 deletions icons/es5/Edit.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 SvgEdit(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: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z",
fill: "currentColor"
}));
}

export default SvgEdit;
21 changes: 21 additions & 0 deletions icons/es5/PhotoCamera.js
@@ -0,0 +1,21 @@
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 SvgPhotoCamera(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: "M12 15a3 3 0 100-6 3 3 0 000 6z",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
d: "M9 2L7.17 4H2v16h20V4h-5.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z",
fill: "currentColor"
}));
}

export default SvgPhotoCamera;
18 changes: 18 additions & 0 deletions icons/es5/VideoCamera.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 SvgVideoCamera(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: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4z",
fill: "currentColor"
}));
}

export default SvgVideoCamera;
5 changes: 5 additions & 0 deletions icons/es5/index.js
Expand Up @@ -10,6 +10,7 @@ export { default as ArrowDropUp } from './ArrowDropUp';
export { default as ArrowDropUpDown } from './ArrowDropUpDown';
export { default as ArrowForward } from './ArrowForward';
export { default as ArrowForwardIos } from './ArrowForwardIos';
export { default as Article } from './Article';
export { default as Assignment } from './Assignment';
export { default as Award } from './Award';
export { default as BookOpen } from './BookOpen';
Expand All @@ -22,6 +23,7 @@ export { default as CheckCircle } from './CheckCircle';
export { default as CheckCircleOutline } from './CheckCircleOutline';
export { default as ChevronLeft } from './ChevronLeft';
export { default as ChevronRight } from './ChevronRight';
export { default as Class } from './Class';
export { default as Close } from './Close';
export { default as CloseSmall } from './CloseSmall';
export { default as DateRange } from './DateRange';
Expand All @@ -30,6 +32,7 @@ export { default as Download } from './Download';
export { default as DownloadDone } from './DownloadDone';
export { default as Downloading } from './Downloading';
export { default as DrawShapes } from './DrawShapes';
export { default as Edit } from './Edit';
export { default as Email } from './Email';
export { default as Error } from './Error';
export { default as Event } from './Event';
Expand Down Expand Up @@ -61,6 +64,7 @@ export { default as MoneyOutline } from './MoneyOutline';
export { default as MoreVert } from './MoreVert';
export { default as Person } from './Person';
export { default as PhoneIphone } from './PhoneIphone';
export { default as PhotoCamera } from './PhotoCamera';
export { default as PlayArrow } from './PlayArrow';
export { default as PlayCircleFilled } from './PlayCircleFilled';
export { default as PlayCircleOutline } from './PlayCircleOutline';
Expand All @@ -84,6 +88,7 @@ export { default as Translate } from './Translate';
export { default as Undo } from './Undo';
export { default as Unlocked } from './Unlocked';
export { default as Verified } from './Verified';
export { default as VideoCamera } from './VideoCamera';
export { default as VideoTranscript } from './VideoTranscript';
export { default as Visibility } from './Visibility';
export { default as VisibilityOff } from './VisibilityOff';
Expand Down
21 changes: 21 additions & 0 deletions icons/jsx/Article.jsx
@@ -0,0 +1,21 @@
import * as React from "react";

function SvgArticle(props) {
return (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M3 3v18h18V3H3zm11 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z"
fill="currentColor"
/>
</svg>
);
}

export default SvgArticle;
18 changes: 18 additions & 0 deletions icons/jsx/Class.jsx
@@ -0,0 +1,18 @@
import * as React from "react";

function SvgClass(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 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4z" fill="currentColor" />
</svg>
);
}

export default SvgClass;
21 changes: 21 additions & 0 deletions icons/jsx/Edit.jsx
@@ -0,0 +1,21 @@
import * as React from "react";

function SvgEdit(props) {
return (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z"
fill="currentColor"
/>
</svg>
);
}

export default SvgEdit;
22 changes: 22 additions & 0 deletions icons/jsx/PhotoCamera.jsx
@@ -0,0 +1,22 @@
import * as React from "react";

function SvgPhotoCamera(props) {
return (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path d="M12 15a3 3 0 100-6 3 3 0 000 6z" fill="currentColor" />
<path
d="M9 2L7.17 4H2v16h20V4h-5.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"
fill="currentColor"
/>
</svg>
);
}

export default SvgPhotoCamera;
18 changes: 18 additions & 0 deletions icons/jsx/VideoCamera.jsx
@@ -0,0 +1,18 @@
import * as React from "react";

function SvgVideoCamera(props) {
return (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path d="M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4z" fill="currentColor" />
</svg>
);
}

export default SvgVideoCamera;
5 changes: 5 additions & 0 deletions icons/jsx/index.jsx
Expand Up @@ -10,6 +10,7 @@ export { default as ArrowDropUp } from './ArrowDropUp';
export { default as ArrowDropUpDown } from './ArrowDropUpDown';
export { default as ArrowForward } from './ArrowForward';
export { default as ArrowForwardIos } from './ArrowForwardIos';
export { default as Article } from './Article';
export { default as Assignment } from './Assignment';
export { default as Award } from './Award';
export { default as BookOpen } from './BookOpen';
Expand All @@ -22,6 +23,7 @@ export { default as CheckCircle } from './CheckCircle';
export { default as CheckCircleOutline } from './CheckCircleOutline';
export { default as ChevronLeft } from './ChevronLeft';
export { default as ChevronRight } from './ChevronRight';
export { default as Class } from './Class';
export { default as Close } from './Close';
export { default as CloseSmall } from './CloseSmall';
export { default as DateRange } from './DateRange';
Expand All @@ -30,6 +32,7 @@ export { default as Download } from './Download';
export { default as DownloadDone } from './DownloadDone';
export { default as Downloading } from './Downloading';
export { default as DrawShapes } from './DrawShapes';
export { default as Edit } from './Edit';
export { default as Email } from './Email';
export { default as Error } from './Error';
export { default as Event } from './Event';
Expand Down Expand Up @@ -61,6 +64,7 @@ export { default as MoneyOutline } from './MoneyOutline';
export { default as MoreVert } from './MoreVert';
export { default as Person } from './Person';
export { default as PhoneIphone } from './PhoneIphone';
export { default as PhotoCamera } from './PhotoCamera';
export { default as PlayArrow } from './PlayArrow';
export { default as PlayCircleFilled } from './PlayCircleFilled';
export { default as PlayCircleOutline } from './PlayCircleOutline';
Expand All @@ -84,6 +88,7 @@ export { default as Translate } from './Translate';
export { default as Undo } from './Undo';
export { default as Unlocked } from './Unlocked';
export { default as Verified } from './Verified';
export { default as VideoCamera } from './VideoCamera';
export { default as VideoTranscript } from './VideoTranscript';
export { default as Visibility } from './Visibility';
export { default as VisibilityOff } from './VisibilityOff';
Expand Down
3 changes: 3 additions & 0 deletions icons/svg/article.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions icons/svg/class.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions icons/svg/edit.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions icons/svg/photo_camera.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions icons/svg/video_camera.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 d7bead1

Please sign in to comment.