mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +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
12 lines
446 B
TypeScript
12 lines
446 B
TypeScript
import { Icon, IconProps } from './Icon'
|
|
|
|
/**
|
|
* Policy icon for policies and rules
|
|
*/
|
|
export const Policy = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M21 5l-9-4-9 4v6c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12c-1.94 1.29-4.58 1.07-6.29-.64-1.95-1.95-1.95-5.12 0-7.07 1.95-1.95 5.12-1.95 7.07 0 1.71 1.71 1.92 4.35.64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V5z"/>
|
|
<circle cx="12" cy="12" r="3"/>
|
|
</Icon>
|
|
)
|