parent
c3b34cde3f
commit
fb3fe8be42
3 changed files with 80 additions and 14 deletions
@ -0,0 +1,27 @@ |
|||||||
|
type CheckIconProps = { |
||||||
|
additionalClasses?: string; |
||||||
|
}; |
||||||
|
|
||||||
|
export function AddUserIcon(props: CheckIconProps) { |
||||||
|
const { additionalClasses = 'mr-2 w-[20px] h-[20px]' } = props; |
||||||
|
|
||||||
|
return ( |
||||||
|
<svg |
||||||
|
xmlns="http://www.w3.org/2000/svg" |
||||||
|
width="24" |
||||||
|
height="24" |
||||||
|
viewBox="0 0 24 24" |
||||||
|
fill="none" |
||||||
|
stroke="currentColor" |
||||||
|
stroke-width="2" |
||||||
|
stroke-linecap="round" |
||||||
|
stroke-linejoin="round" |
||||||
|
className={`relative ${additionalClasses}`} |
||||||
|
> |
||||||
|
<path d="M14 19a6 6 0 0 0-12 0" /> |
||||||
|
<circle cx="8" cy="9" r="4" /> |
||||||
|
<line x1="19" x2="19" y1="8" y2="14" /> |
||||||
|
<line x1="22" x2="16" y1="11" y2="11" /> |
||||||
|
</svg> |
||||||
|
); |
||||||
|
} |
Loading…
Reference in new issue