-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from Giveth/fix-add-new-QF-icon
fix: add new QF icon
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import React, { FC } from 'react'; | ||
import { IIconProps } from '../type'; | ||
|
||
export const IconQFNew: FC<IIconProps> = ({ | ||
size = 16, | ||
color = 'currentColor', | ||
}) => ( | ||
<svg | ||
width={size} | ||
height={size} | ||
viewBox={`0 0 ${size} ${size}`} | ||
fill='none' | ||
xmlns='http://www.w3.org/2000/svg' | ||
> | ||
<path | ||
d='M9.33301 6.66667C9.33301 5.95942 9.61396 5.28115 10.1141 4.78105C10.6142 4.28095 11.2924 4 11.9997 4H25.333C26.0403 4 26.7185 4.28095 27.2186 4.78105C27.7187 5.28115 27.9997 5.95942 27.9997 6.66667V20C27.9997 20.7072 27.7187 21.3855 27.2186 21.8856C26.7185 22.3857 26.0403 22.6667 25.333 22.6667H11.9997C11.2924 22.6667 10.6142 22.3857 10.1141 21.8856C9.61396 21.3855 9.33301 20.7072 9.33301 20V6.66667Z' | ||
stroke={color} | ||
strokeWidth='2' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
/> | ||
<path | ||
d='M18.9633 9.52102L18.6658 9.8133L18.3683 9.52102C18.0961 9.2502 17.7719 9.03518 17.4144 8.88843C17.0569 8.74167 16.6734 8.6661 16.286 8.6661C15.8986 8.6661 15.515 8.74167 15.1576 8.88843C14.8001 9.03518 14.4759 9.2502 14.2037 9.52102C13.9279 9.78852 13.7089 10.1072 13.5594 10.4585C13.41 10.8098 13.333 11.1868 13.333 11.5675C13.333 11.9483 13.41 12.3253 13.5594 12.6766C13.7089 13.0279 13.9279 13.3465 14.2037 13.614L17.965 17.3106C18.354 17.6929 18.9777 17.6929 19.3667 17.3106L23.129 13.614C23.4048 13.3465 23.6238 13.0279 23.7733 12.6766C23.9227 12.3253 23.9997 11.9483 23.9997 11.5675C23.9997 11.1868 23.9227 10.8098 23.7733 10.4585C23.6238 10.1072 23.4048 9.78852 23.129 9.52102C22.8567 9.25017 22.5324 9.03513 22.1748 8.88836C21.8173 8.74159 21.4337 8.66602 21.0462 8.66602C20.6587 8.66602 20.275 8.74159 19.9175 8.88836C19.5599 9.03513 19.2356 9.25017 18.9633 9.52102Z' | ||
fill={color} | ||
/> | ||
<path | ||
d='M22.6667 22.6673V25.334C22.6667 26.0412 22.3857 26.7195 21.8856 27.2196C21.3855 27.7197 20.7072 28.0006 20 28.0006H6.66667C5.95942 28.0006 5.28115 27.7197 4.78105 27.2196C4.28095 26.7195 4 26.0412 4 25.334V12.0007C4 11.2934 4.28095 10.6151 4.78105 10.115C5.28115 9.61494 5.95942 9.33398 6.66667 9.33398H9.33333' | ||
stroke={color} | ||
strokeWidth='2' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
/> | ||
</svg> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters