Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade icons #54

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35,395 changes: 35,065 additions & 330 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"autosize": "^5.0.1",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"monday-ui-style": "0.1.66",
"monday-ui-style": "0.1.124",
"prop-types": "^15.8.0",
"react-inlinesvg": "^2.3.0",
"react-popper": "^2.2.5",
Expand Down
17 changes: 17 additions & 0 deletions src/components/Icon/Icons/components/Academy.js

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

26 changes: 26 additions & 0 deletions src/components/Icon/Icons/components/AddNewDoc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/* eslint-disable */
/* tslint:disable */
import PropTypes from 'prop-types';
import React from 'react';
const AddNewDoc = ({size, ...props}) => (
<svg viewBox="0 0 20 20" fill="currentColor" width={ size || "20" } height={ size || "20" } {...props}>
<g fill="currentColor" clipPath="url(#clip0_337_7087)">
<path d="M16.5988 7.77861C16.6004 7.75869 16.6012 7.73856 16.6012 7.71823C16.6012 7.6979 16.6004 7.67776 16.5988 7.65784V7.63436C16.5987 7.17762 16.4171 6.73944 16.0942 6.41637L12.2838 2.60592C11.9607 2.28307 11.5225 2.10166 11.0658 2.10156H5.16877C4.71171 2.10156 4.27337 2.28313 3.95019 2.60632C3.627 2.9295 3.44543 3.36784 3.44543 3.8249V16.4782C3.44543 16.9353 3.627 17.3736 3.95019 17.6968C4.27337 18.02 4.71171 18.2016 5.16877 18.2016H9.73701C9.27902 17.7996 8.90083 17.2879 8.63366 16.7016H5.16877C5.10954 16.7016 5.05273 16.678 5.01085 16.6361C4.96896 16.5943 4.94543 16.5375 4.94543 16.4782V3.8249C4.94543 3.76566 4.96896 3.70886 5.01085 3.66698C5.05273 3.62509 5.10954 3.60156 5.16877 3.60156L10.2345 3.65625V6.7449C10.2345 7.20195 10.4161 7.64029 10.7393 7.96348C11.0624 8.28666 11.5008 8.46823 11.9578 8.46823H14.1954V8.46649H16.5988V7.77861ZM11.7345 4.17795L14.5248 6.96823H11.9578C11.8986 6.96823 11.8418 6.9447 11.7999 6.90282C11.758 6.86093 11.7345 6.80413 11.7345 6.7449V4.17795Z"
fillRule="evenodd" clipRule="evenodd" />
<path d="M6.11438 10.7515C6.11438 10.3373 6.45017 10.0015 6.86438 10.0015H11.6954C12.1096 10.0015 12.4454 10.3373 12.4454 10.7515 12.4454 11.1657 12.1096 11.5015 11.6954 11.5015H6.86438C6.45017 11.5015 6.11438 11.1657 6.11438 10.7515zM6.86453 13.2015C6.45032 13.2015 6.11453 13.5373 6.11453 13.9515 6.11453 14.3657 6.45032 14.7015 6.86453 14.7015H8.69641C9.11062 14.7015 9.44641 14.3657 9.44641 13.9515 9.44641 13.5373 9.11062 13.2015 8.69641 13.2015H6.86453zM15.4454 10.5469C15.8596 10.5469 16.1954 10.8827 16.1954 11.2969V14.5469H19.4454C19.8596 14.5469 20.1954 14.8827 20.1954 15.2969 20.1954 15.7111 19.8596 16.0469 19.4454 16.0469H16.1954V19.2969C16.1954 19.7111 15.8596 20.0469 15.4454 20.0469 15.0312 20.0469 14.6954 19.7111 14.6954 19.2969V16.0469H11.4454C11.0312 16.0469 10.6954 15.7111 10.6954 15.2969 10.6954 14.8827 11.0312 14.5469 11.4454 14.5469H14.6954V11.2969C14.6954 10.8827 15.0312 10.5469 15.4454 10.5469z"
/>
</g>
<defs>
<clipPath id="clip0_337_7087">
<path fill="#fff" transform="translate(.195 .151)" d="M0 0H20V20H0z" />
</clipPath>
</defs>
</svg>
);
AddNewDoc.displayName = 'AddNewDoc';
AddNewDoc.propTypes = {
size: PropTypes.string
}
export default AddNewDoc;
/* tslint:enable */
/* eslint-enable */
6 changes: 3 additions & 3 deletions src/components/Icon/Icons/components/AddToTeam.js

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

19 changes: 19 additions & 0 deletions src/components/Icon/Icons/components/Connect.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* eslint-disable */
/* tslint:disable */
import PropTypes from 'prop-types';
import React from 'react';
const Connect = ({size, ...props}) => (
<svg viewBox="0 0 15 15" fill="currentColor" width={ size || "20" } height={ size || "20" } {...props}>
<path d="M14.0303 0.96967C14.3232 1.26256 14.3232 1.73744 14.0303 2.03033L2.03033 14.0303C1.73744 14.3232 1.26256 14.3232 0.96967 14.0303C0.676777 13.7374 0.676777 13.2626 0.96967 12.9697L12.9697 0.96967C13.2626 0.676777 13.7374 0.676777 14.0303 0.96967Z"
fill="currentColor" fillRule="evenodd" clipRule="evenodd" />
<path d="M5.75 1C5.75 0.585786 6.08579 0.25 6.5 0.25H14C14.4142 0.25 14.75 0.585786 14.75 1V8.5C14.75 8.91421 14.4142 9.25 14 9.25C13.5858 9.25 13.25 8.91421 13.25 8.5V1.75H6.5C6.08579 1.75 5.75 1.41421 5.75 1Z"
fill="currentColor" fillRule="evenodd" clipRule="evenodd" />
</svg>
);
Connect.displayName = 'Connect';
Connect.propTypes = {
size: PropTypes.string
}
export default Connect;
/* tslint:enable */
/* eslint-enable */
28 changes: 28 additions & 0 deletions src/components/Icon/Icons/components/ConnectedDoc.js

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

17 changes: 17 additions & 0 deletions src/components/Icon/Icons/components/Country.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 Country = ({size, ...props}) => (
<svg viewBox="0 0 20 20" fill="currentColor" width={ size || "20" } height={ size || "20" } {...props}>
<path d="M4 17V3M7.83676 4.0363C8.56001 4.11785 9.25533 4.33528 9.87627 4.67407 10.4825 5.00475 11.1596 5.21992 11.8647 5.30589 12.5698 5.39187 13.2874 5.34676 13.9717 5.17344L15.2352 4.85329C15.3245 4.83078 15.4185 4.82692 15.5097 4.84204 15.601 4.85715 15.6871 4.89082 15.7612 4.94041 15.8353 4.98999 15.8954 5.05413 15.9369 5.1278 15.9783 5.20146 15.9999 5.28264 16 5.36496V10.9105C16 11.0262 15.9576 11.1387 15.879 11.231 15.8005 11.3233 15.6902 11.3904 15.5648 11.4222L13.9717 11.8261C13.2872 11.999 12.5695 12.0436 11.8644 11.9571 11.1593 11.8707 10.4822 11.655 9.87627 11.3238 9.25533 10.9851 8.56001 10.7676 7.83676 10.6861 7.1135 10.6045 6.37894 10.6607 5.68213 10.851L4 11.3097V4.65941L5.68213 4.20118M7.83676 4.0363C7.1135 3.95476 6.37894 4.01096 5.68213 4.20118M7.83676 4.0363C7.34593 3.99165 6.22784 3.96212 5.68213 4.20118"
stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" />
</svg>
);
Country.displayName = 'Country';
Country.propTypes = {
size: PropTypes.string
}
export default Country;
/* tslint:enable */
/* eslint-enable */
2 changes: 1 addition & 1 deletion src/components/Icon/Icons/components/Deactivate.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import React from 'react';
const Deactivate = ({size, ...props}) => (
<svg viewBox="0 0 20 20" fill="currentColor" width={ size || "20" } height={ size || "20" } {...props}>
<path d="M16.5 10C16.5 13.5899 13.5899 16.5 10 16.5C8.47546 16.5 7.0735 15.9751 5.96497 15.0963L15.0964 5.96512C15.9752 7.07363 16.5 8.47552 16.5 10ZM4.90424 14.0357L14.0358 4.90436C12.9272 4.02511 11.5249 3.5 10 3.5C6.41015 3.5 3.5 6.41015 3.5 10C3.5 11.5248 4.02506 12.927 4.90424 14.0357ZM18 10C18 14.4183 14.4183 18 10 18C5.58172 18 2 14.4183 2 10C2 5.58172 5.58172 2 10 2C14.4183 2 18 5.58172 18 10Z"
fill="#676879" fillRule="evenodd" clipRule="evenodd" />
fill="currentColor" fillRule="evenodd" clipRule="evenodd" />
</svg>
);
Deactivate.displayName = 'Deactivate';
Expand Down
Loading