Files
metabuilder/fakemui/icons/Star.tsx

9 lines
498 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Star = (props: IconProps) => (
<Icon {...props}>
<path d="M132.4 190.7l50.4 32c6.5 4.1 14.5-2 12.6-9.5l-14.6-57.4a8.7 8.7 0 0 1 2.9-8.8l45.2-37.7c5.9-4.9 2.9-14.8-4.8-15.3l-59-3.8a8.3 8.3 0 0 1-7.3-5.4l-22-55.4a8.3 8.3 0 0 0-15.6 0l-22 55.4a8.3 8.3 0 0 1-7.3 5.4l-59 3.8c-7.7.5-10.7 10.4-4.8 15.3L72.3 147a8.7 8.7 0 0 1 2.9 8.8l-14.6 57.4c-1.9 7.5 6.1 13.6 12.6 9.5l50.4-32a8.1 8.1 0 0 1 8.8 0Z" />
</Icon>
)