mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
285 B
TypeScript
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>
|
|
)
|