diff --git a/src/icons/Icons.stories.tsx b/src/icons/Icons.stories.tsx index 364ce559..9ae8805a 100644 --- a/src/icons/Icons.stories.tsx +++ b/src/icons/Icons.stories.tsx @@ -5350,6 +5350,11 @@ const Template: StoryFn = (args) => {
ProjectorIcon +
+ +
+ PromptObjectIcon +

diff --git a/src/icons/PromptObjectIcon.tsx b/src/icons/PromptObjectIcon.tsx new file mode 100644 index 00000000..1d294c31 --- /dev/null +++ b/src/icons/PromptObjectIcon.tsx @@ -0,0 +1,40 @@ +// This file is part of MinIO Design System +// Copyright (c) 2024 MinIO, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +import * as React from "react"; +import { SVGProps } from "react"; + +const PromptObjectIcon = (props: SVGProps) => ( + + + + +); +export default PromptObjectIcon; diff --git a/src/icons/ShareIcon.tsx b/src/icons/ShareIcon.tsx index 565bcdfe..f37edaf2 100644 --- a/src/icons/ShareIcon.tsx +++ b/src/icons/ShareIcon.tsx @@ -26,10 +26,9 @@ const ShareIcon = (props: SVGProps) => ( {...props} > ); diff --git a/src/icons/index.ts b/src/icons/index.ts index 1f14ea77..6163b1a9 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -1068,6 +1068,7 @@ export { default as PowerOffIcon } from "./PowerOffIcon"; export { default as PresentationIcon } from "./PresentationIcon"; export { default as PrinterIcon } from "./PrinterIcon"; export { default as ProjectorIcon } from "./ProjectorIcon"; +export { default as PromptObjectIcon } from "./PromptObjectIcon"; export { default as ProportionsIcon } from "./ProportionsIcon"; export { default as PuzzleIcon } from "./PuzzleIcon"; export { default as PyramidIcon } from "./PyramidIcon";