mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
12 lines
485 B
TypeScript
12 lines
485 B
TypeScript
import { Icon, IconProps } from './Icon'
|
|
|
|
/**
|
|
* ManageAccounts icon for user management
|
|
*/
|
|
export const ManageAccounts = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<circle cx="10" cy="8" r="4"/>
|
|
<path d="M10.35 14.01C7.62 13.91 2 15.27 2 18v2h9.54c-2.47-2.76-1.23-5.89-1.19-5.99zm9.08 4.01c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59l-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/>
|
|
</Icon>
|
|
)
|