Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(react-ui-kit): Add OutlineCheck Icon #6304

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions packages/react-ui-kit/src/Icon/OutlineCheck.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* Wire
* Copyright (C) 2024 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 OutlineCheck = (props: SVGIconProps) => (
<SVGIcon realWidth={16} realHeight={16} {...props}>
<path
fill="#676B71"
fillRule="evenodd"
d="M14 8A6 6 0 1 1 2 8a6 6 0 0 1 12 0Zm2 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0Zm-8.659 3.27 5.128-5.127-1.414-1.415-4.42 4.421-1.69-1.69-1.414 1.415 2.396 2.396.707.708.707-.708Z"
clipRule="evenodd"
/>
</SVGIcon>
);
2 changes: 2 additions & 0 deletions packages/react-ui-kit/src/Icon/SVGIcon.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ import {
UploadIcon,
VerificationShieldIcon,
WireIcon,
OutlineCheck,
} from '@wireapp/react-ui-kit';

const icons = [
Expand Down Expand Up @@ -153,6 +154,7 @@ const icons = [
HideIcon,
VerificationShieldIcon,
WireIcon,
OutlineCheck,
];

const brandIcons = [
Expand Down
1 change: 1 addition & 0 deletions packages/react-ui-kit/src/Icon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export * from './MuteIcon';
export * from './NotificationIcon';
export * from './NotificationOffIcon';
export * from './OptionsIcon';
export * from './OutlineCheck';
export * from './GridIcon';
export * from './PeopleIcon';
export * from './PingIcon';
Expand Down
Loading