From f578e2a15be9ea12c7eab8c06553ab84457bdd02 Mon Sep 17 00:00:00 2001 From: kacperkosinski Date: Tue, 12 Sep 2023 09:37:38 +0200 Subject: [PATCH 1/2] add Sharing icon --- src/icons/Sharing.tsx | 26 ++++++++++++++++++++++++++ src/icons/index.ts | 1 + stories/DataDisplay/Icons.stories.tsx | 1 + 3 files changed, 28 insertions(+) create mode 100644 src/icons/Sharing.tsx diff --git a/src/icons/Sharing.tsx b/src/icons/Sharing.tsx new file mode 100644 index 000000000..5825bcc90 --- /dev/null +++ b/src/icons/Sharing.tsx @@ -0,0 +1,26 @@ +import { createElement } from 'react'; +import SvgIcon from '@mui/material/SvgIcon'; + +const Sharing = (props: any) => + createElement( + SvgIcon, + props, + , + + ); + +export default Sharing; diff --git a/src/icons/index.ts b/src/icons/index.ts index 554161d91..3fb2885d3 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -129,3 +129,4 @@ export { default as Send } from './Send'; export { default as PlayContained } from './PlayContained'; export { default as ClockContained } from './ClockContained'; export { default as ParticipantFictional } from './ParticipantFictional'; +export { default as Sharing } from './Sharing'; diff --git a/stories/DataDisplay/Icons.stories.tsx b/stories/DataDisplay/Icons.stories.tsx index e03763b30..d3299253e 100644 --- a/stories/DataDisplay/Icons.stories.tsx +++ b/stories/DataDisplay/Icons.stories.tsx @@ -191,6 +191,7 @@ const iconsList = [ { name: 'PlayContained', component: i.PlayContained }, { name: 'ClockContained', component: i.ClockContained }, { name: 'ParticipantFictional', component: i.ParticipantFictional }, + { name: 'Sharing', component: i.Sharing }, ]; const Template: StoryFn = (args) => { From e14ff5a59b0800a0136a7ced50c23b1ef37336bc Mon Sep 17 00:00:00 2001 From: kacperkosinski Date: Tue, 12 Sep 2023 09:38:36 +0200 Subject: [PATCH 2/2] bump version --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index a1ffef42a..e60e614c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@lyyti/design-system", - "version": "2.4.0", + "version": "2.4.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@lyyti/design-system", - "version": "2.4.0", + "version": "2.4.1", "license": "MIT", "dependencies": { "@emotion/react": "11.11.1", diff --git a/package.json b/package.json index 37fcef247..43605882a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@lyyti/design-system", "description": "Lyyti Design System", "homepage": "https://lyytioy.github.io/lyyti-design-system", - "version": "2.4.0", + "version": "2.4.1", "engines": { "node": "^18", "npm": "^9"