Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const ShieldStar = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ShieldStar(props, ref) {
return (
<Icon {...props} name="ShieldStar">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M12 2L3 5.88889V11.0909C3 16.1364 6.84 20.8545 12 22C17.16 20.8545 21 16.1364 21 11.0909V5.88889L12 2ZM12 5.88889L13.3279 10.133H17.625L14.1486 12.7559L15.4764 17L12 14.377L8.52356 17L9.85144 12.7559L6.375 10.133H10.6721L12 5.88889Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
ShieldStar.displayName = 'ShieldStar'
export default ShieldStar
|