mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import { ThemeIcon } from "@mantine/core";
|
|
import React from "react";
|
|
import { IconUsersGroup } from "@tabler/icons-react";
|
|
|
|
export function IconGroupCircle() {
|
|
return (
|
|
<ThemeIcon variant="light" size="lg" color="gray" radius="xl">
|
|
<IconUsersGroup stroke={1.5} />
|
|
</ThemeIcon>
|
|
);
|
|
}
|