Skip to content

Commit 3ca6615

Browse files
committed
icon: update icons
1 parent ce0a37b commit 3ca6615

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monday-ui-react-core",
3-
"version": "0.0.17",
3+
"version": "0.0.18",
44
"description": "Official monday.com UI resources for application development in React.js",
55
"main": "dist/main.js",
66
"scripts": {
@@ -39,7 +39,7 @@
3939
"@react-hook/merged-ref": "^1.3.0",
4040
"classnames": "^2.2.6",
4141
"lodash": "^4.17.19",
42-
"monday-ui-style": "0.0.13",
42+
"monday-ui-style": "0.0.14",
4343
"prop-types": "^15.7.2",
4444
"react-inlinesvg": "^2.1.1",
4545
"react-popper": "^2.2.3",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* eslint-disable */
2+
/* tslint:disable */
3+
import PropTypes from 'prop-types';
4+
import React from 'react';
5+
const Download = ({size, ...props}) => (
6+
<svg viewBox="0 0 20 20" fill="currentColor" width={ size || "20" } height={ size || "20" } {...props}>
7+
<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"
8+
fill="currentColor" fillRule="evenodd" clipRule="evenodd" />
9+
</svg>
10+
);
11+
Download.displayName = 'Download';
12+
Download.propTypes = {
13+
size: PropTypes.string
14+
}
15+
export default Download;
16+
/* tslint:enable */
17+
/* eslint-enable */

src/components/Icon/Icons/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export {default as Column} from './components/Column';
1919
export {default as Dashboard} from './components/Dashboard';
2020
export {default as Delete} from './components/Delete';
2121
export {default as DoubleCheck} from './components/DoubleCheck';
22+
export {default as Download} from './components/Download';
2223
export {default as Drag} from './components/Drag';
2324
export {default as DropdownChevronDown} from './components/DropdownChevronDown';
2425
export {default as DropdownChevronLeft} from './components/DropdownChevronLeft';

0 commit comments

Comments
 (0)