diff --git a/.changeset/beige-mirrors-unite.md b/.changeset/beige-mirrors-unite.md new file mode 100644 index 00000000..0deb73b8 --- /dev/null +++ b/.changeset/beige-mirrors-unite.md @@ -0,0 +1,5 @@ +--- +'@cube-dev/ui-kit': patch +--- + +Add UserIcon and UserGroupIcon. diff --git a/src/icons/UserGroupIcon.tsx b/src/icons/UserGroupIcon.tsx new file mode 100644 index 00000000..fb4f7ceb --- /dev/null +++ b/src/icons/UserGroupIcon.tsx @@ -0,0 +1,23 @@ +export const UserGroupIcon = ( + + + + + + + + + + +); diff --git a/src/icons/UserIcon.tsx b/src/icons/UserIcon.tsx new file mode 100644 index 00000000..337d9dae --- /dev/null +++ b/src/icons/UserIcon.tsx @@ -0,0 +1,16 @@ +export const UserIcon = ( + + + +); diff --git a/src/icons/index.ts b/src/icons/index.ts index f2c4e588..9327a566 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -68,6 +68,8 @@ import { PauseCircleFilledIcon as _PauseCircleFilledIcon } from './PauseCircleFi import { PauseCircleIcon as _PauseCircleIcon } from './PauseCircleIcon'; import { StatsIcon as _StatsIcon } from './StatsIcon'; import { UnlockIcon as _UnlockIcon } from './UnlockIcon'; +import { UserIcon as _UserIcon } from './UserIcon'; +import { UserGroupIcon as _UserGroupIcon } from './UserGroupIcon'; export const CloseIcon = wrapIcon('CloseIcon', _CloseIcon); export const ExclamationIcon = wrapIcon('ExclamationIcon', _ExclamationIcon); @@ -162,6 +164,8 @@ export const PauseCircleFilledIcon = wrapIcon( export const PauseCircleIcon = wrapIcon('PauseCircleIcon', _PauseCircleIcon); export const StatsIcon = wrapIcon('StatsIcon', _StatsIcon); export const UnlockIcon = wrapIcon('UnlockIcon', _UnlockIcon); +export const UserIcon = wrapIcon('UserIcon', _UserIcon); +export const UserGroupIcon = wrapIcon('UserGroupIcon', _UserGroupIcon); export { IconContainer } from './IconContainer';