Files
omnivore/packages/web/components/elements/icons/PinnedFlairIcon.tsx
Jackson Harper a95a5ac2a5 Add flair icon
2023-10-24 17:08:24 +08:00

30 lines
1.7 KiB
TypeScript

/* eslint-disable functional/no-class */
/* eslint-disable functional/no-this-expression */
import { IconProps } from './IconProps'
import React from 'react'
export class PinnedFlairIcon 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="M10.814 2.70621L10.8767 2.76154L14.5434 6.42821C14.6557 6.54119 14.7239 6.69069 14.7356 6.84963C14.7472 7.00856 14.7016 7.16641 14.6069 7.29457C14.5121 7.42273 14.3747 7.51273 14.2193 7.54825C14.064 7.58377 13.901 7.56247 13.76 7.48821L11.6454 9.60221L10.696 12.1335C10.671 12.2003 10.6355 12.2627 10.5907 12.3182L10.544 12.3715L9.54403 13.3715C9.42915 13.4862 9.27637 13.5551 9.11435 13.5651C8.95234 13.5752 8.79222 13.5258 8.66403 13.4262L8.60069 13.3709L6.73869 11.5095L4.21003 14.0375C4.09005 14.1571 3.92907 14.2265 3.75977 14.2317C3.59047 14.2369 3.42555 14.1774 3.29851 14.0654C3.17146 13.9534 3.09182 13.7972 3.07576 13.6286C3.0597 13.4599 3.10842 13.2915 3.21203 13.1575L3.26736 13.0949L5.79536 10.5662L3.93403 8.70421C3.81924 8.58941 3.75029 8.43668 3.7401 8.27466C3.72991 8.11265 3.77919 7.95248 3.87869 7.82421L3.93403 7.76154L4.93403 6.76154C4.98433 6.71106 5.0424 6.66897 5.10603 6.63688L5.17136 6.60888L7.70203 5.65888L9.81603 3.54554C9.74394 3.41076 9.72035 3.25531 9.74922 3.10521C9.77809 2.95512 9.85765 2.8195 9.97459 2.72107C10.0915 2.62265 10.2387 2.56739 10.3916 2.56457C10.5444 2.56174 10.6935 2.61218 10.814 2.70621Z"
fill="#3D3D3D"
/>
</g>
</svg>
)
}
}