-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
137 additions
and
300 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,8 @@ | ||
{ | ||
"singleQuote": true, | ||
"jsxSingleQuote": true, | ||
"semi": false, | ||
"tabWidth": 4, | ||
"useTabs": true, | ||
"printWidth": 150 | ||
} |
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
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
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
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
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,11 @@ | ||
import React from 'react' | ||
|
||
const ArrowIcon: React.FC<React.SVGProps<SVGSVGElement>> = React.memo((props) => { | ||
return ( | ||
<svg width='6' height='12' viewBox='0 0 6 12' fill='none' xmlns='http://www.w3.org/2000/svg' {...props}> | ||
<path d='M0.25 11.5L5.75 6L0.25 0.5L0.25 11.5Z' fill='#777777' /> | ||
</svg> | ||
) | ||
}) | ||
|
||
export default ArrowIcon |
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
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
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
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
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 |
---|---|---|
@@ -1,47 +1,25 @@ | ||
import React from 'react'; | ||
import React from 'react' | ||
|
||
const ClockIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => { | ||
return ( | ||
<svg | ||
width='12' | ||
height='12' | ||
viewBox='0 0 12 12' | ||
fill='none' | ||
xmlns='http://www.w3.org/2000/svg' | ||
{...props} | ||
> | ||
<g clip-path='url(#clip0_517_1773)'> | ||
<path | ||
d='M6 10C7.933 10 9.5 8.433 9.5 6.5C9.5 4.567 7.933 3 6 3C4.067 3 2.5 4.567 2.5 6.5C2.5 8.433 4.067 10 6 10Z' | ||
stroke='#E2E2E2' | ||
stroke-linecap='round' | ||
stroke-linejoin='round' | ||
/> | ||
<path | ||
d='M6 5V6.5H7' | ||
stroke='#E2E2E2' | ||
stroke-linecap='round' | ||
stroke-linejoin='round' | ||
/> | ||
<path | ||
d='M3.5 2L2.125 3' | ||
stroke='#E2E2E2' | ||
stroke-linecap='round' | ||
stroke-linejoin='round' | ||
/> | ||
<path | ||
d='M8.5 2L9.875 3' | ||
stroke='#E2E2E2' | ||
stroke-linecap='round' | ||
stroke-linejoin='round' | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id='clip0_517_1773'> | ||
<rect width='12' height='12' fill='white' /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
}; | ||
export default React.memo(ClockIcon); | ||
return ( | ||
<svg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg' {...props}> | ||
<g clip-path='url(#clip0_517_1773)'> | ||
<path | ||
d='M6 10C7.933 10 9.5 8.433 9.5 6.5C9.5 4.567 7.933 3 6 3C4.067 3 2.5 4.567 2.5 6.5C2.5 8.433 4.067 10 6 10Z' | ||
stroke='#E2E2E2' | ||
stroke-linecap='round' | ||
stroke-linejoin='round' | ||
/> | ||
<path d='M6 5V6.5H7' stroke='#E2E2E2' stroke-linecap='round' stroke-linejoin='round' /> | ||
<path d='M3.5 2L2.125 3' stroke='#E2E2E2' stroke-linecap='round' stroke-linejoin='round' /> | ||
<path d='M8.5 2L9.875 3' stroke='#E2E2E2' stroke-linecap='round' stroke-linejoin='round' /> | ||
</g> | ||
<defs> | ||
<clipPath id='clip0_517_1773'> | ||
<rect width='12' height='12' fill='white' /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
) | ||
} | ||
export default React.memo(ClockIcon) |
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
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
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
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 |
---|---|---|
@@ -1,46 +1,24 @@ | ||
import React from 'react'; | ||
import React from 'react' | ||
|
||
const InfoIcon: React.FC<React.HtmlHTMLAttributes<any>> = React.forwardRef( | ||
(props, ref: any) => { | ||
return ( | ||
<svg | ||
ref={ref} | ||
width='20' | ||
height='20' | ||
viewBox='0 0 20 20' | ||
fill='none' | ||
xmlns='http://www.w3.org/2000/svg' | ||
{...props} | ||
> | ||
<g clip-path='url(#clip0_12231_35410)'> | ||
<path | ||
d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' | ||
fill='#E2E2E2' | ||
fill-opacity='0.1' | ||
/> | ||
<path | ||
d='M10 6.66602H10.0083' | ||
stroke='#777777' | ||
stroke-width='1.5' | ||
stroke-linecap='round' | ||
stroke-linejoin='round' | ||
/> | ||
<path | ||
d='M9.16699 10H10.0003V13.3333H10.8337' | ||
stroke='#777777' | ||
stroke-width='1.5' | ||
stroke-linecap='round' | ||
stroke-linejoin='round' | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id='clip0_12231_35410'> | ||
<rect width='20' height='20' fill='white' /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
} | ||
); | ||
const InfoIcon: React.FC<React.HtmlHTMLAttributes<any>> = React.forwardRef((props, ref: any) => { | ||
return ( | ||
<svg ref={ref} width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' {...props}> | ||
<g clip-path='url(#clip0_12231_35410)'> | ||
<path | ||
d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' | ||
fill='#E2E2E2' | ||
fill-opacity='0.1' | ||
/> | ||
<path d='M10 6.66602H10.0083' stroke='#777777' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /> | ||
<path d='M9.16699 10H10.0003V13.3333H10.8337' stroke='#777777' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /> | ||
</g> | ||
<defs> | ||
<clipPath id='clip0_12231_35410'> | ||
<rect width='20' height='20' fill='white' /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
) | ||
}) | ||
|
||
export default React.memo(InfoIcon); | ||
export default React.memo(InfoIcon) |
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
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
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
Oops, something went wrong.