Files
metabuilder/icons/react/fakemui/SecurityUpdate.tsx
2026-03-09 22:30:41 +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>
)