Skip to content

Commit

Permalink
feat: unread icon added in paragon (#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehaknasir committed Aug 3, 2021
1 parent 43138fa commit 04047b1
Show file tree
Hide file tree
Showing 6 changed files with 88 additions and 91 deletions.
22 changes: 22 additions & 0 deletions icons/es5/Unread.js
@@ -0,0 +1,22 @@
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 SvgUnread(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("rect", {
x: 7,
y: 7,
width: 10,
height: 10,
rx: 5,
fill: "currentColor"
}));
}

export default SvgUnread;
1 change: 1 addition & 0 deletions icons/es5/index.js
Expand Up @@ -100,6 +100,7 @@ export { default as Timelapse } from './Timelapse';
export { default as Translate } from './Translate';
export { default as Undo } from './Undo';
export { default as Unlocked } from './Unlocked';
export { default as Unread } from './Unread';
export { default as Verified } from './Verified';
export { default as VerifiedBadge } from './VerifiedBadge';
export { default as VerifiedOutline } from './VerifiedOutline';
Expand Down
18 changes: 18 additions & 0 deletions icons/jsx/Unread.jsx
@@ -0,0 +1,18 @@
import * as React from "react";

function SvgUnread(props) {
return (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<rect x={7} y={7} width={10} height={10} rx={5} fill="currentColor" />
</svg>
);
}

export default SvgUnread;
1 change: 1 addition & 0 deletions icons/jsx/index.jsx
Expand Up @@ -100,6 +100,7 @@ export { default as Timelapse } from './Timelapse';
export { default as Translate } from './Translate';
export { default as Undo } from './Undo';
export { default as Unlocked } from './Unlocked';
export { default as Unread } from './Unread';
export { default as Verified } from './Verified';
export { default as VerifiedBadge } from './VerifiedBadge';
export { default as VerifiedOutline } from './VerifiedOutline';
Expand Down
134 changes: 43 additions & 91 deletions icons/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions icons/svg/unread.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 04047b1

Please sign in to comment.