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

9 lines
293 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Shield = (props: IconProps) => (
<Icon {...props}>
<path d="M40 114.8V56a8 8 0 0 1 8-8h160a8 8 0 0 1 8 8v58.8c0 84.4-71.3 111.4-84.6 115.7a7.5 7.5 0 0 1-6.8 0C111.3 226.2 40 199.2 40 114.8Z" />
</Icon>
)