mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
33 lines
2 KiB
TypeScript
33 lines
2 KiB
TypeScript
/* eslint-disable functional/no-class */
|
|
/* eslint-disable functional/no-this-expression */
|
|
import { IconProps } from './IconProps'
|
|
|
|
import React from 'react'
|
|
|
|
export class RecommendedFlairIcon extends React.Component<IconProps> {
|
|
render() {
|
|
const size = (this.props.size || 26).toString()
|
|
const color = (this.props.color || '#2A2A2A').toString()
|
|
|
|
return (
|
|
<svg
|
|
width="17"
|
|
height="17"
|
|
viewBox="0 0 17 17"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g>
|
|
<path
|
|
d="M9.4056 2.56641C9.91574 2.56638 10.4066 2.76129 10.7778 3.11126C11.1489 3.46123 11.3723 3.93981 11.4023 4.44907L11.4056 4.56641V7.23307H12.7389C13.229 7.23299 13.7021 7.41286 14.0683 7.73853C14.4345 8.0642 14.6684 8.513 14.7256 8.99974L14.7356 9.11574L14.7389 9.23307L14.7256 9.36374L14.0549 12.7184C13.8009 13.8024 13.0536 14.5824 12.1816 14.5717L12.0723 14.5664H6.73893C6.57564 14.5664 6.41804 14.5064 6.29602 14.3979C6.17399 14.2894 6.09604 14.1399 6.07693 13.9777L6.07227 13.8997L6.07293 7.54241C6.07305 7.4255 6.10391 7.31068 6.16242 7.20946C6.22093 7.10824 6.30502 7.02419 6.40627 6.96574C6.69055 6.80155 6.93001 6.56987 7.10349 6.29116C7.27697 6.01245 7.37913 5.6953 7.40093 5.36774L7.4056 5.23307V4.56641C7.4056 4.03597 7.61631 3.52727 7.99139 3.15219C8.36646 2.77712 8.87517 2.56641 9.4056 2.56641Z"
|
|
fill="#FEC43F"
|
|
/>
|
|
<path
|
|
d="M4.07227 7.23242C4.23555 7.23244 4.39316 7.29239 4.51518 7.4009C4.6372 7.5094 4.71516 7.65892 4.73427 7.82109L4.73893 7.89909V13.8991C4.73891 14.0624 4.67896 14.22 4.57046 14.342C4.46195 14.464 4.31243 14.542 4.15027 14.5611L4.07227 14.5658H3.4056C3.06921 14.5659 2.74522 14.4388 2.49857 14.2101C2.25191 13.9814 2.10083 13.6679 2.0756 13.3324L2.07227 13.2324V8.56576C2.07216 8.22937 2.1992 7.90538 2.42793 7.65872C2.65666 7.41207 2.97016 7.26098 3.3056 7.23576L3.4056 7.23242H4.07227Z"
|
|
fill="#FEC43F"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
)
|
|
}
|
|
}
|