Files
metabuilder/fakemui/icons/SecurityUpdate.tsx
JohnDoe6345789 73913a6161 feat: Add 12 new admin/storage icons, media_center tests, github_tools package
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
2025-12-30 13:04:47 +00:00

11 lines
309 B
TypeScript

import { Icon, IconProps } from './Icon'
/**
* SecurityUpdate icon for security-related updates
*/
export const SecurityUpdate = (props: IconProps) => (
<Icon {...props}>
<path d="M5 2h14c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2zm7 2L6 8v4h4v6h4v-6h4V8l-6-4z"/>
</Icon>
)