Files
metabuilder/icons/react/fakemui/ShieldSlash.tsx
2026-03-09 22:30:41 +00:00

10 lines
285 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const ShieldSlash = (props: IconProps) => (
<Icon {...props}>
<path d="M128 24l80 28v68c0 36.2-21.7 68.9-56 83.2-34.3-14.3-56-47-56-83.2V52z" />
<line x1="48" y1="40" x2="208" y2="216" />
</Icon>
)