From a30d8f40b7e09e7051d514df9c28e765a30dbdcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=AA=20Boaventura?= Date: Tue, 30 Apr 2024 18:24:57 -0300 Subject: [PATCH] feat: add warning shield icon (#589) --- src/components/icons/WarningShieldIcon.tsx | 25 ++++++++++++++++++++++ src/icons.ts | 1 + 2 files changed, 26 insertions(+) create mode 100644 src/components/icons/WarningShieldIcon.tsx diff --git a/src/components/icons/WarningShieldIcon.tsx b/src/components/icons/WarningShieldIcon.tsx new file mode 100644 index 00000000..77de9775 --- /dev/null +++ b/src/components/icons/WarningShieldIcon.tsx @@ -0,0 +1,25 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + + + + +)) diff --git a/src/icons.ts b/src/icons.ts index f1d6a24e..dda206fd 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -187,6 +187,7 @@ export { default as VideoIcon } from './components/icons/VideoIcon' export { default as VolumesIcon } from './components/icons/VolumesIcon' export { default as WarningIcon } from './components/icons/WarningIcon' export { default as WarningOutlineIcon } from './components/icons/WarningOutlineIcon' +export { default as WarningShieldIcon } from './components/icons/WarningShieldIcon' export { default as WavingHandIcon } from './components/icons/WavingHandIcon' export { default as WebhooksIcon } from './components/icons/WebhooksIcon' export { default as WindowsLogoIcon } from './components/icons/WindowsLogoIcon'