mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +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
309 B
TypeScript
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>
|
|
)
|