From d79cd8f20dea28868fa4f28f8a6ee616088b5335 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 14:18:35 +0200 Subject: [PATCH] Update icons - monday-ui-style 0.1.210 (#1941) Co-authored-by: Monday Style --- package-lock.json | 14 +++++++------- package.json | 2 +- .../Icon/Icons/components/Placeholder.tsx | 16 ++++++++++++++++ src/components/Icon/Icons/index.ts | 1 + 4 files changed, 25 insertions(+), 8 deletions(-) create mode 100644 src/components/Icon/Icons/components/Placeholder.tsx diff --git a/package-lock.json b/package-lock.json index 1505d9454a..afc36b0c36 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "classnames": "^2.3.2", "framer-motion": "^6.5.1", "lodash-es": "^4.17.21", - "monday-ui-style": "0.1.209", + "monday-ui-style": "0.1.210", "prop-types": "^15.8.1", "react-dates": "21.8.0", "react-inlinesvg": "^3.0.1", @@ -26934,9 +26934,9 @@ } }, "node_modules/monday-ui-style": { - "version": "0.1.209", - "resolved": "https://registry.npmjs.org/monday-ui-style/-/monday-ui-style-0.1.209.tgz", - "integrity": "sha512-Tv9JLCJY2lsRrze14Md9WVKLWAkrThkQOoEVL63CopUC/6uW5cKiJKZ1pYx0U1ubI/AKhlIWBnEQh62pSTJHPw==", + "version": "0.1.210", + "resolved": "https://registry.npmjs.org/monday-ui-style/-/monday-ui-style-0.1.210.tgz", + "integrity": "sha512-GU8RMUAiaX7YNl39fBYrto/FOk//O9KTBXbYw5JwwMUczq1C8ESF52iGzdtcN4go/ErEu+iyfsYgPH+jA2FdAw==", "dependencies": { "postcss": "8.4.31", "postcss-scss": "^4.0.9", @@ -57278,9 +57278,9 @@ "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "monday-ui-style": { - "version": "0.1.209", - "resolved": "https://registry.npmjs.org/monday-ui-style/-/monday-ui-style-0.1.209.tgz", - "integrity": "sha512-Tv9JLCJY2lsRrze14Md9WVKLWAkrThkQOoEVL63CopUC/6uW5cKiJKZ1pYx0U1ubI/AKhlIWBnEQh62pSTJHPw==", + "version": "0.1.210", + "resolved": "https://registry.npmjs.org/monday-ui-style/-/monday-ui-style-0.1.210.tgz", + "integrity": "sha512-GU8RMUAiaX7YNl39fBYrto/FOk//O9KTBXbYw5JwwMUczq1C8ESF52iGzdtcN4go/ErEu+iyfsYgPH+jA2FdAw==", "requires": { "postcss": "8.4.31", "postcss-scss": "^4.0.9", diff --git a/package.json b/package.json index 28b6646b27..b804a787b7 100644 --- a/package.json +++ b/package.json @@ -112,7 +112,7 @@ "classnames": "^2.3.2", "framer-motion": "^6.5.1", "lodash-es": "^4.17.21", - "monday-ui-style": "0.1.209", + "monday-ui-style": "0.1.210", "prop-types": "^15.8.1", "react-dates": "21.8.0", "react-inlinesvg": "^3.0.1", diff --git a/src/components/Icon/Icons/components/Placeholder.tsx b/src/components/Icon/Icons/components/Placeholder.tsx new file mode 100644 index 0000000000..e284aeb51e --- /dev/null +++ b/src/components/Icon/Icons/components/Placeholder.tsx @@ -0,0 +1,16 @@ +/* eslint-disable */ +/* tslint:disable */ +import * as React from 'react'; +export interface PlaceholderProps extends React.SVGAttributes { +size?: string | number; +} +const Placeholder: React.FC = ({size, ...props}) => ( + + + +); +Placeholder.displayName = 'Placeholder'; +export default Placeholder; +/* tslint:enable */ +/* eslint-enable */ diff --git a/src/components/Icon/Icons/index.ts b/src/components/Icon/Icons/index.ts index e459215f87..a3855f811f 100644 --- a/src/components/Icon/Icons/index.ts +++ b/src/components/Icon/Icons/index.ts @@ -172,6 +172,7 @@ export {default as Pause} from './components/Pause'; export {default as Person} from './components/Person'; export {default as PersonRound} from './components/PersonRound'; export {default as Pin} from './components/Pin'; +export {default as Placeholder} from './components/Placeholder'; export {default as Play} from './components/Play'; export {default as Print} from './components/Print'; export {default as PushNotification} from './components/PushNotification';