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 FileStar = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function FileStar(props, ref) {
return (
<Icon {...props} name="FileStar">
<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="M5 21V3H14L19 7V21H5ZM13.1803 11.6287L12 8L10.8197 11.6287H7L10.0902 13.8713L8.90983 17.5L12 15.2574L15.0902 17.5L13.9098 13.8713L17 11.6287H13.1803Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
FileStar.displayName = 'FileStar'
export default FileStar
|