mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
Icons (12 new): - AccountTree, AdminPanelSettings, ManageAccounts (admin) - Backup, Restore, Storage (storage) - Domain, SecurityUpdate, VerifiedUser, VpnKey (security) - Policy, Help (utility) Tests: - media_center: helpers.test.lua + helpers.cases.json - TV, Radio, Retro, Document helper test coverage Packages: - github_tools: new package scaffold with seed data
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>
|
|
)
|