diff --git a/package-lock.json b/package-lock.json index 6201e8d2cd..fc7bdbfb1c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28798,9 +28798,9 @@ "dev": true }, "monday-ui-style": { - "version": "0.1.59", - "resolved": "https://registry.npmjs.org/monday-ui-style/-/monday-ui-style-0.1.59.tgz", - "integrity": "sha512-MESyzZk41ErDPPAUYcrStJWuB5aOBqzAtZEoLZBcAv8nwuQjdxZDjMLSiP/qpuj0NYA+xesGNovg3p7XYx+rsA==" + "version": "0.1.63", + "resolved": "https://registry.npmjs.org/monday-ui-style/-/monday-ui-style-0.1.63.tgz", + "integrity": "sha512-15RAWgu++tG34Y9PIaGNatjj4+UpjGR3BmjdeW3lqTM5bkEXja03IVMZ2Y6fzEGbsmUnLil71iUVrYaega7j0Q==" }, "mout": { "version": "1.1.0", diff --git a/package.json b/package.json index cf563aab99..9ed20c0c14 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "autosize": "4.0.2", "classnames": "^2.2.6", "lodash": "^4.17.21", - "monday-ui-style": "0.1.59", + "monday-ui-style": "0.1.63", "prop-types": "^15.7.2", "react-inlinesvg": "^2.1.1", "react-popper": "^2.2.3", diff --git a/src/components/Icon/Icons/components/CollapseRound.js b/src/components/Icon/Icons/components/CollapseRound.js index f284a65d11..5db4285426 100644 --- a/src/components/Icon/Icons/components/CollapseRound.js +++ b/src/components/Icon/Icons/components/CollapseRound.js @@ -3,10 +3,10 @@ import PropTypes from 'prop-types'; import React from 'react'; const CollapseRound = ({size, ...props}) => ( - - - + + ); diff --git a/src/components/Icon/Icons/components/ItemHeightTriple.js b/src/components/Icon/Icons/components/ItemHeightTriple.js new file mode 100644 index 0000000000..fb575e5a83 --- /dev/null +++ b/src/components/Icon/Icons/components/ItemHeightTriple.js @@ -0,0 +1,17 @@ +/* eslint-disable */ +/* tslint:disable */ +import PropTypes from 'prop-types'; +import React from 'react'; +const ItemHeightTriple = ({size, ...props}) => ( + + + +); +ItemHeightTriple.displayName = 'ItemHeightTriple'; +ItemHeightTriple.propTypes = { + size: PropTypes.string +} +export default ItemHeightTriple; +/* tslint:enable */ +/* eslint-enable */ diff --git a/src/components/Icon/Icons/components/LongText.js b/src/components/Icon/Icons/components/LongText.js index 7c249430ef..57920c7458 100644 --- a/src/components/Icon/Icons/components/LongText.js +++ b/src/components/Icon/Icons/components/LongText.js @@ -4,7 +4,7 @@ import PropTypes from 'prop-types'; import React from 'react'; const LongText = ({size, ...props}) => ( - ); diff --git a/src/components/Icon/Icons/components/Pin.js b/src/components/Icon/Icons/components/Pin.js index 88e68f4da5..1d9557bb94 100644 --- a/src/components/Icon/Icons/components/Pin.js +++ b/src/components/Icon/Icons/components/Pin.js @@ -4,7 +4,7 @@ import PropTypes from 'prop-types'; import React from 'react'; const Pin = ({size, ...props}) => ( - ); diff --git a/src/components/Icon/Icons/components/ShortText.js b/src/components/Icon/Icons/components/ShortText.js index 9338e074a5..a1c0e8d2bf 100644 --- a/src/components/Icon/Icons/components/ShortText.js +++ b/src/components/Icon/Icons/components/ShortText.js @@ -4,7 +4,7 @@ import PropTypes from 'prop-types'; import React from 'react'; const ShortText = ({size, ...props}) => ( - ); diff --git a/src/components/Icon/Icons/index.js b/src/components/Icon/Icons/index.js index 873b68329c..db1034b03d 100644 --- a/src/components/Icon/Icons/index.js +++ b/src/components/Icon/Icons/index.js @@ -105,6 +105,7 @@ export {default as Invite} from './components/Invite'; export {default as IPRestrictions} from './components/IPRestrictions'; export {default as Italic} from './components/Italic'; export {default as Item} from './components/Item'; +export {default as ItemHeightTriple} from './components/ItemHeightTriple'; export {default as Keyboard} from './components/Keyboard'; export {default as Labs} from './components/Labs'; export {default as Layout} from './components/Layout';