-
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
6 changed files
with
180 additions
and
6 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
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,38 @@ | ||
import React from "react"; | ||
|
||
export const Clock = (props: IconProps) => { | ||
const { className, colors, gradientTransform } = props; | ||
|
||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="16" | ||
height="16" | ||
className={className} | ||
viewBox="0 0 24 24" | ||
fill="url(#gradient1)" | ||
> | ||
<defs> | ||
<linearGradient | ||
id="gradient1" | ||
x1="0%" | ||
y1="0%" | ||
x2="100%" | ||
y2="0%" | ||
gradientTransform={gradientTransform} | ||
> | ||
{colors?.map((color, index) => ( | ||
<stop | ||
key={index} | ||
offset={`${ | ||
index + 1 < colors.length ? index * (100 / colors.length) : 100 | ||
}%`} | ||
style={{ stopColor: color, stopOpacity: 1 }} | ||
/> | ||
))} | ||
</linearGradient> | ||
</defs> | ||
<path d="M15.25 13.5h-4a.75.75 0 0 1-.75-.75v-6a.75.75 0 0 1 1.5 0V12h3.25a.75.75 0 0 1 0 1.5ZM12 2C6.478 2 2 6.478 2 12s4.478 10 10 10 10-4.478 10-10S17.522 2 12 2Z" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import React from "react"; | ||
|
||
export const Location = (props: IconProps) => { | ||
const { className, colors, gradientTransform } = props; | ||
|
||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="16" | ||
height="16" | ||
className={className} | ||
viewBox="0 0 24 24" | ||
fill="url(#gradient1)" | ||
> | ||
<defs> | ||
<linearGradient | ||
id="gradient1" | ||
x1="0%" | ||
y1="0%" | ||
x2="100%" | ||
y2="0%" | ||
gradientTransform={gradientTransform} | ||
> | ||
{colors?.map((color, index) => ( | ||
<stop | ||
key={index} | ||
offset={`${ | ||
index + 1 < colors.length ? index * (100 / colors.length) : 100 | ||
}%`} | ||
style={{ stopColor: color, stopOpacity: 1 }} | ||
/> | ||
))} | ||
</linearGradient> | ||
</defs> | ||
<path d="m18.157 16.882-1.187 1.174c-.875.858-2.01 1.962-3.406 3.312a2.25 2.25 0 0 1-3.128 0l-3.491-3.396c-.439-.431-.806-.794-1.102-1.09a8.707 8.707 0 1 1 12.314 0ZM14.5 11a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z" /> | ||
</svg> | ||
); | ||
}; |
38 changes: 38 additions & 0 deletions
38
Client/reasn-client/packages/ui/src/icons/QuestionCircle.tsx
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,38 @@ | ||
import React from "react"; | ||
|
||
export const QuestionCircle = (props: IconProps) => { | ||
const { className, colors, gradientTransform } = props; | ||
|
||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="16" | ||
height="16" | ||
className={className} | ||
viewBox="0 0 24 24" | ||
fill="url(#gradient1)" | ||
> | ||
<defs> | ||
<linearGradient | ||
id="gradient1" | ||
x1="0%" | ||
y1="0%" | ||
x2="100%" | ||
y2="0%" | ||
gradientTransform={gradientTransform} | ||
> | ||
{colors?.map((color, index) => ( | ||
<stop | ||
key={index} | ||
offset={`${ | ||
index + 1 < colors.length ? index * (100 / colors.length) : 100 | ||
}%`} | ||
style={{ stopColor: color, stopOpacity: 1 }} | ||
/> | ||
))} | ||
</linearGradient> | ||
</defs> | ||
<path d="M12 2c5.523 0 10 4.478 10 10s-4.477 10-10 10S2 17.522 2 12 6.477 2 12 2Zm0 13.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0-8.75A2.75 2.75 0 0 0 9.25 9.5a.75.75 0 0 0 1.493.102l.007-.102a1.25 1.25 0 1 1 2.5 0c0 .539-.135.805-.645 1.332l-.135.138c-.878.878-1.22 1.447-1.22 2.53a.75.75 0 0 0 1.5 0c0-.539.135-.805.645-1.332l.135-.138c.878-.878 1.22-1.447 1.22-2.53A2.75 2.75 0 0 0 12 6.75Z" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import React from "react"; | ||
|
||
export const TickCircle = (props: IconProps) => { | ||
const { className, colors, gradientTransform } = props; | ||
|
||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="16" | ||
height="16" | ||
className={className} | ||
viewBox="0 0 24 24" | ||
fill="url(#gradient1)" | ||
> | ||
<defs> | ||
<linearGradient | ||
id="gradient1" | ||
x1="0%" | ||
y1="0%" | ||
x2="100%" | ||
y2="0%" | ||
gradientTransform={gradientTransform} | ||
> | ||
{colors?.map((color, index) => ( | ||
<stop | ||
key={index} | ||
offset={`${ | ||
index + 1 < colors.length ? index * (100 / colors.length) : 100 | ||
}%`} | ||
style={{ stopColor: color, stopOpacity: 1 }} | ||
/> | ||
))} | ||
</linearGradient> | ||
</defs> | ||
<path d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2Zm3.22 6.97-4.47 4.47-1.97-1.97a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l5-5a.75.75 0 1 0-1.06-1.06Z" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
export { Fire } from "./Fire"; | ||
export { Clock } from "./Clock"; | ||
export { Location } from "./Location"; | ||
export { QuestionCircle } from "./QuestionCircle"; | ||
export { TickCircle } from "./TickCircle"; |