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
280 B
TypeScript
11 lines
280 B
TypeScript
import { Icon, IconProps } from './Icon'
|
|
|
|
/**
|
|
* StorageIcon for storage/database operations
|
|
*/
|
|
export const Storage = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z"/>
|
|
</Icon>
|
|
)
|