mirror of
https://github.com/docmost/docmost.git
synced 2025-11-27 12:08:46 +10:00
12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
import { ActionIcon, rem } from "@mantine/core";
|
|
import React from "react";
|
|
import { IconUsersGroup } from "@tabler/icons-react";
|
|
|
|
export function IconGroupCircle() {
|
|
return (
|
|
<ActionIcon variant="light" size="lg" color="gray" radius="xl">
|
|
<IconUsersGroup stroke={1.5} />
|
|
</ActionIcon>
|
|
);
|
|
}
|