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

Update icons #368

Merged
merged 1 commit into from
Dec 1, 2021
Merged
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"autosize": "4.0.2",
"classnames": "^2.2.6",
"lodash": "^4.17.21",
"monday-ui-style": "0.1.57",
"monday-ui-style": "0.1.59",
"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/TextBig.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import PropTypes from 'prop-types';
import React from 'react';
const TextBig = ({size, ...props}) => (
<svg viewBox="0 0 20 20" fill="currentColor" width={ size || "20" } height={ size || "20" } {...props}>
<path d="M6.05824 16.25H6.23297L6.29302 16.0859L7.46349 12.8874H12.5369L13.7154 16.0864L13.7756 16.25H13.95H15H15.3613L15.234 15.9119L10.7139 3.91188L10.6529 3.75H10.4799H9.5201H9.34712L9.28615 3.91188L4.76605 15.9119L4.63868 16.25H5H6.05824ZM7.95838 11.522L9.9959 5.96274L12.0334 11.522H7.95838Z"
fill="currentColor" stroke="currentColor" strokeWidth=".5" />
<path d="M13.9499 16H13.95L12.7112 12.6374H12.7112L13.9499 16ZM5 16L9.5201 4H9.52007L4.99998 16H5ZM6.40768 16.5L7.63819 13.1374H12.3626L13.6013 16.5H15.7226L10.8258 3.5H9.17412L4.27734 16.5H6.40768ZM9.99589 5.2363L12.3913 11.772H12.3913L9.9959 5.23626L9.99589 5.2363ZM11.6755 11.272H8.31625L9.99587 6.68922L11.6755 11.272Z"
fill="currentColor" fillRule="evenodd" clipRule="evenodd" />
</svg>
);
TextBig.displayName = 'TextBig';
Expand Down
4 changes: 2 additions & 2 deletions src/components/Icon/Icons/components/TextHuge.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import PropTypes from 'prop-types';
import React from 'react';
const TextHuge = ({size, ...props}) => (
<svg viewBox="0 0 20 20" fill="currentColor" width={ size || "20" } height={ size || "20" } {...props}>
<path d="M12.5392 13.7404H7.44277L6.37651 17H4L8.96988 3H11.0211L16 17H13.6145L12.5392 13.7404ZM8.08434 11.7788H11.8976L9.99096 5.97115L8.08434 11.7788Z" fill="currentColor"
stroke="currentColor" strokeWidth=".5" />
<path d="M11.1975 2.75H8.79337L3.646 17.25H6.55779L7.62406 13.9904H12.3584L13.4337 17.25H16.3543L11.1975 2.75ZM11.5524 11.5288H8.42957L9.99099 6.77265L11.5524 11.5288Z"
fill="currentColor" fillRule="evenodd" clipRule="evenodd" />
</svg>
);
TextHuge.displayName = 'TextHuge';
Expand Down
17 changes: 17 additions & 0 deletions src/components/Icon/Icons/components/TextMedium.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 TextMedium = ({size, ...props}) => (
<svg viewBox="0 0 20 20" fill="currentColor" width={ size || "20" } height={ size || "20" } {...props}>
<path d="M11.9681 12.2787L12.9635 15H14.3743L14.3743 15H12.9636L11.9681 12.2786H7.59965L7.59964 12.2787H11.9681ZM9.18232 4.57293L5.20056 15H6.61846L6.61845 15H5.20049L9.18226 4.57293H9.18232ZM6.69205 15.1048L7.67317 12.3834H11.8948L12.8903 15.1048H14.5266L10.4575 4.46817H9.11012L5.04834 15.1048H6.69205ZM11.5599 11.1471L9.78385 6.27029L9.78389 6.27017L11.5599 11.1471H11.5599ZM11.4102 11.0424H8.16438L9.78402 6.5769L11.4102 11.0424Z"
fill="currentColor" fillRule="evenodd" clipRule="evenodd" />
</svg>
);
TextMedium.displayName = 'TextMedium';
TextMedium.propTypes = {
size: PropTypes.string
}
export default TextMedium;
/* 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 @@ -186,6 +186,7 @@ export {default as Textcolor} from './components/Textcolor';
export {default as TextColorIndicator} from './components/TextColorIndicator';
export {default as TextCopy} from './components/TextCopy';
export {default as TextHuge} from './components/TextHuge';
export {default as TextMedium} from './components/TextMedium';
export {default as TextSmall} from './components/TextSmall';
export {default as ThumbsUp} from './components/ThumbsUp';
export {default as Time} from './components/Time';
Expand Down