mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
import { Icon, IconProps } from './Icon'
|
|
|
|
/**
|
|
* AccountTree icon for hierarchy/organization charts
|
|
*/
|
|
export const AccountTree = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z"/>
|
|
</Icon>
|
|
)
|