diff --git a/.changeset/breezy-owls-shake.md b/.changeset/breezy-owls-shake.md new file mode 100644 index 000000000..bdb9e8f49 --- /dev/null +++ b/.changeset/breezy-owls-shake.md @@ -0,0 +1,5 @@ +--- +'@cube-dev/ui-kit': patch +--- + +Add UnlockIcon. diff --git a/src/icons/UnlockIcon.tsx b/src/icons/UnlockIcon.tsx new file mode 100644 index 000000000..0ff66c84f --- /dev/null +++ b/src/icons/UnlockIcon.tsx @@ -0,0 +1,16 @@ +export const UnlockIcon = ( + + + +); diff --git a/src/icons/index.ts b/src/icons/index.ts index 6cb5410db..f2c4e588b 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -67,6 +67,7 @@ import { NotAllowedIcon as _NotAllowedIcon } from './NotAllowedIcon'; import { PauseCircleFilledIcon as _PauseCircleFilledIcon } from './PauseCircleFilledIcon'; import { PauseCircleIcon as _PauseCircleIcon } from './PauseCircleIcon'; import { StatsIcon as _StatsIcon } from './StatsIcon'; +import { UnlockIcon as _UnlockIcon } from './UnlockIcon'; export const CloseIcon = wrapIcon('CloseIcon', _CloseIcon); export const ExclamationIcon = wrapIcon('ExclamationIcon', _ExclamationIcon); @@ -160,6 +161,7 @@ export const PauseCircleFilledIcon = wrapIcon( ); export const PauseCircleIcon = wrapIcon('PauseCircleIcon', _PauseCircleIcon); export const StatsIcon = wrapIcon('StatsIcon', _StatsIcon); +export const UnlockIcon = wrapIcon('UnlockIcon', _UnlockIcon); export { IconContainer } from './IconContainer';