parent
505077a545
commit
5edda5654c
3 changed files with 68 additions and 14 deletions
@ -0,0 +1,29 @@ |
|||||||
|
type BuildingIconProps = { |
||||||
|
className?: string; |
||||||
|
}; |
||||||
|
export function BuildingIcon(props: BuildingIconProps) { |
||||||
|
const { className } = props; |
||||||
|
|
||||||
|
return ( |
||||||
|
<svg |
||||||
|
xmlns="http://www.w3.org/2000/svg" |
||||||
|
width="24" |
||||||
|
height="24" |
||||||
|
viewBox="0 0 24 24" |
||||||
|
fill="none" |
||||||
|
stroke="currentColor" |
||||||
|
strokeWidth="2" |
||||||
|
strokeLinecap="round" |
||||||
|
strokeLinejoin="round" |
||||||
|
className={className} |
||||||
|
> |
||||||
|
<path d="M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z"></path> |
||||||
|
<path d="M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2"></path> |
||||||
|
<path d="M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2"></path> |
||||||
|
<path d="M10 6h4"></path> |
||||||
|
<path d="M10 10h4"></path> |
||||||
|
<path d="M10 14h4"></path> |
||||||
|
<path d="M10 18h4"></path> |
||||||
|
</svg> |
||||||
|
); |
||||||
|
} |
@ -0,0 +1,26 @@ |
|||||||
|
type UsersIconProps = { |
||||||
|
className?: string; |
||||||
|
}; |
||||||
|
export function UsersIcon(props: UsersIconProps) { |
||||||
|
const { className } = props; |
||||||
|
|
||||||
|
return ( |
||||||
|
<svg |
||||||
|
xmlns="http://www.w3.org/2000/svg" |
||||||
|
width="24" |
||||||
|
height="24" |
||||||
|
viewBox="0 0 24 24" |
||||||
|
fill="none" |
||||||
|
stroke="currentColor" |
||||||
|
strokeWidth="2" |
||||||
|
strokeLinecap="round" |
||||||
|
strokeLinejoin="round" |
||||||
|
className={className} |
||||||
|
> |
||||||
|
<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"></path> |
||||||
|
<circle cx="9" cy="7" r="4"></circle> |
||||||
|
<path d="M22 21v-2a4 4 0 0 0-3-3.87"></path> |
||||||
|
<path d="M16 3.13a4 4 0 0 1 0 7.75"></path> |
||||||
|
</svg> |
||||||
|
); |
||||||
|
} |
Loading…
Reference in new issue