diff --git a/packages/react-ui-kit/src/Icon/AlertIcon.tsx b/packages/react-ui-kit/src/Icon/AlertIcon.tsx new file mode 100644 index 0000000000..33897e885e --- /dev/null +++ b/packages/react-ui-kit/src/Icon/AlertIcon.tsx @@ -0,0 +1,31 @@ +/* + * Wire + * Copyright (C) 2025 Wire Swiss GmbH + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see http://www.gnu.org/licenses/. + * + */ + +import {SVGIcon, SVGIconProps} from './SVGIcon'; + +export const AlertIcon = (props: SVGIconProps) => ( + + + + +); diff --git a/packages/react-ui-kit/src/Icon/index.ts b/packages/react-ui-kit/src/Icon/index.ts index 09a257cfa8..8f5d9d57ba 100644 --- a/packages/react-ui-kit/src/Icon/index.ts +++ b/packages/react-ui-kit/src/Icon/index.ts @@ -136,3 +136,4 @@ export * from './Files/MultipleFilesIcon'; export * from './PlayIcon'; export * from './PauseIcon'; +export * from './AlertIcon';