diff --git a/packages/react-ui-kit/src/DataDisplay/Icon/DraftMessageIcon.tsx b/packages/react-ui-kit/src/DataDisplay/Icon/DraftMessageIcon.tsx new file mode 100644 index 0000000000..afb405fb87 --- /dev/null +++ b/packages/react-ui-kit/src/DataDisplay/Icon/DraftMessageIcon.tsx @@ -0,0 +1,28 @@ +/* + * 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 DraftMessageIcon = (props: SVGIconProps) => ( + + + + + +); diff --git a/packages/react-ui-kit/src/DataDisplay/Icon/MarkAsUnreadIcon.tsx b/packages/react-ui-kit/src/DataDisplay/Icon/MarkAsUnreadIcon.tsx new file mode 100644 index 0000000000..4c2ee69492 --- /dev/null +++ b/packages/react-ui-kit/src/DataDisplay/Icon/MarkAsUnreadIcon.tsx @@ -0,0 +1,27 @@ +/* + * 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 MarkAsUnreadIcon = (props: SVGIconProps) => { + + + + ; +}; diff --git a/packages/react-ui-kit/src/DataDisplay/Icon/index.ts b/packages/react-ui-kit/src/DataDisplay/Icon/index.ts index 4830a39ee6..2e9f36658c 100644 --- a/packages/react-ui-kit/src/DataDisplay/Icon/index.ts +++ b/packages/react-ui-kit/src/DataDisplay/Icon/index.ts @@ -37,6 +37,7 @@ export * from './CirclePlusIcon'; export * from './CloseIcon'; export * from './DeviceIcon'; export * from './DownloadIcon'; +export * from './DraftMessageIcon'; export * from './DropdownFilledIcon'; export * from './EditDocumentIcon'; export * from './EditIcon'; @@ -59,6 +60,7 @@ export * from './LeaveIcon'; export * from './LinkIcon'; export * from './ListIcon'; export * from './LockIcon'; +export * from './MarkAsUnreadIcon'; export * from './MessageIcon'; export * from './MinusIcon'; export * from './MoreIcon';