mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 06:44:58 +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
367 B
TypeScript
11 lines
367 B
TypeScript
import { Icon, IconProps } from './Icon'
|
|
|
|
/**
|
|
* Backup icon for data backup operations
|
|
*/
|
|
export const Backup = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z"/>
|
|
</Icon>
|
|
)
|