Skip to content

Commit

Permalink
icon: update icons
Browse files Browse the repository at this point in the history
  • Loading branch information
orrgottlieb committed Nov 15, 2020
1 parent ce0a37b commit 3ca6615
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 6 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.17",
"version": "0.0.18",
"description": "Official monday.com UI resources for application development in React.js",
"main": "dist/main.js",
"scripts": {
Expand Down Expand Up @@ -39,7 +39,7 @@
"@react-hook/merged-ref": "^1.3.0",
"classnames": "^2.2.6",
"lodash": "^4.17.19",
"monday-ui-style": "0.0.13",
"monday-ui-style": "0.0.14",
"prop-types": "^15.7.2",
"react-inlinesvg": "^2.1.1",
"react-popper": "^2.2.3",
Expand Down
17 changes: 17 additions & 0 deletions src/components/Icon/Icons/components/Download.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* eslint-disable */
/* tslint:disable */
import PropTypes from 'prop-types';
import React from 'react';
const Download = ({size, ...props}) => (
<svg viewBox="0 0 20 20" fill="currentColor" width={ size || "20" } height={ size || "20" } {...props}>
<path d="M10.75 2.7002C10.75 2.28598 10.4142 1.9502 10 1.9502C9.58579 1.9502 9.25 2.28598 9.25 2.7002L9.25 10.5358L6.53236 7.79724C6.24059 7.50322 5.76572 7.5014 5.47171 7.79317C5.17769 8.08494 5.17587 8.55981 5.46764 8.85382L9.59471 13.0127C9.73552 13.1546 9.92716 13.2344 10.1271 13.2344C10.327 13.2344 10.5186 13.1546 10.6594 13.0127L14.7865 8.85382C15.0783 8.55981 15.0764 8.08494 14.7824 7.79317C14.4884 7.5014 14.0135 7.50322 13.7218 7.79724L10.75 10.7919V2.7002ZM3.75 16.3428L3.75 12.0193C3.75 11.6051 3.41421 11.2693 3 11.2693C2.58579 11.2693 2.25 11.6051 2.25 12.0193V16.3817C2.25 16.396 2.25041 16.4103 2.25123 16.4246C2.2777 16.886 2.51237 17.2915 2.85877 17.565C3.19773 17.8326 3.62517 17.9624 4.04876 17.9493L16.4514 17.9493C16.8749 17.9622 17.3022 17.8323 17.641 17.5648C17.9873 17.2915 18.2219 16.8863 18.2487 16.4252C18.2496 16.4107 18.25 16.3962 18.25 16.3817V12.0193C18.25 11.6051 17.9142 11.2693 17.5 11.2693C17.0858 11.2693 16.75 11.6051 16.75 12.0193V16.3424L16.7493 16.3439L16.7473 16.3481C16.7429 16.3562 16.7327 16.3708 16.7116 16.3875C16.6667 16.4229 16.5887 16.4536 16.4937 16.4499C16.4839 16.4495 16.4741 16.4493 16.4643 16.4493L4.03571 16.4493C4.02576 16.4493 4.01581 16.4495 4.00586 16.4499C3.91092 16.4537 3.83301 16.423 3.78822 16.3876C3.76714 16.371 3.75703 16.3565 3.75267 16.3485C3.75142 16.3461 3.75057 16.3443 3.75 16.3428Z"
fill="currentColor" fillRule="evenodd" clipRule="evenodd" />
</svg>
);
Download.displayName = 'Download';
Download.propTypes = {
size: PropTypes.string
}
export default Download;
/* tslint:enable */
/* eslint-enable */
1 change: 1 addition & 0 deletions src/components/Icon/Icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export {default as Column} from './components/Column';
export {default as Dashboard} from './components/Dashboard';
export {default as Delete} from './components/Delete';
export {default as DoubleCheck} from './components/DoubleCheck';
export {default as Download} from './components/Download';
export {default as Drag} from './components/Drag';
export {default as DropdownChevronDown} from './components/DropdownChevronDown';
export {default as DropdownChevronLeft} from './components/DropdownChevronLeft';
Expand Down

0 comments on commit 3ca6615

Please sign in to comment.