Skip to content

Commit 7149493

Browse files
committed
feat: add UnlockIcon
1 parent c93c520 commit 7149493

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

.changeset/breezy-owls-shake.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@cube-dev/ui-kit': patch
3+
---
4+
5+
Add UnlockIcon.

src/icons/UnlockIcon.tsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
export const UnlockIcon = (
2+
<svg
3+
xmlns="http://www.w3.org/2000/svg"
4+
width="16"
5+
height="16"
6+
viewBox="0 0 16 16"
7+
fill="none"
8+
>
9+
<path
10+
fill="currentColor"
11+
fillRule="evenodd"
12+
d="M9.059 2.172c.532.203.898.343 1.172.475.268.128.401.226.488.322a1.4 1.4 0 0 1 .354.79c.013.128-.002.293-.085.579-.085.292-.224.658-.427 1.19L10.38 6H4.68c-1.008 0-1.512 0-1.897.196a1.8 1.8 0 0 0-.787.787C1.8 7.368 1.8 7.872 1.8 8.88v3.24c0 1.008 0 1.512.196 1.897a1.8 1.8 0 0 0 .787.787C3.168 15 3.672 15 4.68 15h6.64c1.008 0 1.512 0 1.897-.196a1.8 1.8 0 0 0 .787-.787c.196-.385.196-.889.196-1.897V8.88c0-1.008 0-1.512-.196-1.897a1.8 1.8 0 0 0-.787-.787c-.338-.172-.768-.193-1.552-.196.168-.438.344-.876.475-1.327.104-.357.163-.693.126-1.042a2.6 2.6 0 0 0-.657-1.467c-.235-.26-.525-.44-.86-.6a18 18 0 0 0-1.24-.504L8.707.753a18 18 0 0 0-1.04-.375 2.7 2.7 0 0 0-.864-.14 2.6 2.6 0 0 0-1.777.771 2.7 2.7 0 0 0-.488.726c-.131.268-.269.605-.437 1.016l-.008.02a.6.6 0 0 0 1.111.453c.178-.435.3-.734.412-.96.108-.222.188-.335.263-.411a1.4 1.4 0 0 1 .957-.415c.107-.003.244.016.48.088.241.073.543.188.983.356zM11.32 7.2H4.68c-.524 0-.845 0-1.085.02-.372.031-.546.225-.575.575C3 8.035 3 8.356 3 8.88v3.24c0 .524 0 .845.02 1.085.031.373.225.546.575.575.24.02.561.02 1.085.02h6.64c.524 0 .845 0 1.085-.02.376-.031.546-.223.575-.575.02-.24.02-.561.02-1.085V8.88c0-.524 0-.845-.02-1.085-.031-.375-.223-.546-.575-.574-.24-.02-.561-.021-1.085-.021m-2.717 3.441A1.004 1.004 0 0 0 8 8.831a1.005 1.005 0 0 0-.603 1.81v1.425h1.206z"
13+
clipRule="evenodd"
14+
/>
15+
</svg>
16+
);

src/icons/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ import { NotAllowedIcon as _NotAllowedIcon } from './NotAllowedIcon';
6767
import { PauseCircleFilledIcon as _PauseCircleFilledIcon } from './PauseCircleFilledIcon';
6868
import { PauseCircleIcon as _PauseCircleIcon } from './PauseCircleIcon';
6969
import { StatsIcon as _StatsIcon } from './StatsIcon';
70+
import { UnlockIcon as _UnlockIcon } from './UnlockIcon';
7071

7172
export const CloseIcon = wrapIcon('CloseIcon', _CloseIcon);
7273
export const ExclamationIcon = wrapIcon('ExclamationIcon', _ExclamationIcon);
@@ -160,6 +161,7 @@ export const PauseCircleFilledIcon = wrapIcon(
160161
);
161162
export const PauseCircleIcon = wrapIcon('PauseCircleIcon', _PauseCircleIcon);
162163
export const StatsIcon = wrapIcon('StatsIcon', _StatsIcon);
164+
export const UnlockIcon = wrapIcon('UnlockIcon', _UnlockIcon);
163165

164166
export { IconContainer } from './IconContainer';
165167

0 commit comments

Comments
 (0)