Skip to content

Commit

Permalink
feat: fix PushNotification icon
Browse files Browse the repository at this point in the history
  • Loading branch information
orrgottlieb committed Feb 16, 2021
1 parent ff73fed commit 769e217
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monday-ui-react-core",
"version": "0.0.68",
"version": "0.0.69",
"description": "Official monday.com UI resources for application development in React.js",
"main": "dist/main.js",
"scripts": {
Expand Down Expand Up @@ -42,7 +42,7 @@
"@react-hook/merged-ref": "^1.3.0",
"classnames": "^2.2.6",
"lodash": "^4.17.19",
"monday-ui-style": "0.0.26",
"monday-ui-style": "0.0.27",
"prop-types": "^15.7.2",
"react-inlinesvg": "^2.1.1",
"react-popper": "^2.2.3",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Icon/Icons/components/PushNotification.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import PropTypes from 'prop-types';
import React from 'react';
const PushNotification = ({size, ...props}) => (
<svg viewBox="0 0 28 24" fill="currentColor" width={ size || "28" } height={ size || "24" } {...props}>
<path d="M26 1.62H2C1.72386 1.62 1.5 1.84385 1.5 2.11999V4.9701H26.5V2.11999C26.5 1.84385 26.2761 1.62 26 1.62ZM1.5 21.64V6.4701H26.5V21.64C26.5 21.9161 26.2761 22.14 26 22.14H2C1.72386 22.14 1.5 21.9161 1.5 21.64ZM2 0.119995C0.895431 0.119995 0 1.01542 0 2.11999V21.64C0 22.7446 0.895431 23.64 2 23.64H26C27.1046 23.64 28 22.7446 28 21.64V2.11999C28 1.01543 27.1046 0.119995 26 0.119995H2ZM4 8C3.44772 8 3 8.44772 3 9V13C3 13.5523 3.44772 14 4 14H24C24.5523 14 25 13.5523 25 13V9C25 8.44772 24.5523 8 24 8H4Z"
<svg viewBox="0 0 28 28" fill="currentColor" width={ size || "28" } height={ size || "28" } {...props}>
<path d="M26 3.62H2C1.72386 3.62 1.5 3.84385 1.5 4.11999V6.9701H26.5V4.11999C26.5 3.84385 26.2761 3.62 26 3.62ZM1.5 23.64V8.4701H26.5V23.64C26.5 23.9161 26.2761 24.14 26 24.14H2C1.72386 24.14 1.5 23.9161 1.5 23.64ZM2 2.12C0.895431 2.12 0 3.01542 0 4.11999V23.64C0 24.7446 0.895431 25.64 2 25.64H26C27.1046 25.64 28 24.7446 28 23.64V4.11999C28 3.01543 27.1046 2.12 26 2.12H2ZM4 10C3.44772 10 3 10.4477 3 11V15C3 15.5523 3.44772 16 4 16H24C24.5523 16 25 15.5523 25 15V11C25 10.4477 24.5523 10 24 10H4Z"
fill="currentColor" fillRule="evenodd" clipRule="evenodd" />
</svg>
);
Expand Down

0 comments on commit 769e217

Please sign in to comment.