mirror of
https://github.com/docmost/docmost.git
synced 2025-11-13 04:32:41 +10:00
space updates
* space UI * space management * space permissions * other fixes
This commit is contained in:
15
apps/client/src/components/icons/icon-people-circle.tsx
Normal file
15
apps/client/src/components/icons/icon-people-circle.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
import { ActionIcon, rem } from "@mantine/core";
|
||||
import React from "react";
|
||||
import { IconUsersGroup } from "@tabler/icons-react";
|
||||
|
||||
interface IconPeopleCircleProps extends React.ComponentPropsWithoutRef<"svg"> {
|
||||
size?: number | string;
|
||||
}
|
||||
|
||||
export function IconGroupCircle() {
|
||||
return (
|
||||
<ActionIcon variant="light" size="lg" color="gray" radius="xl">
|
||||
<IconUsersGroup stroke={1.5} />
|
||||
</ActionIcon>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user