mirror of
https://github.com/docmost/docmost.git
synced 2026-06-15 22:48:42 +08:00
90ae750d48
* space UI * space management * space permissions * other fixes
16 lines
418 B
TypeScript
16 lines
418 B
TypeScript
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>
|
|
);
|
|
}
|