File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ import React from "react" ;
2+
3+ import { IconProps } from "../core/icon" ;
4+
5+ export const IconQuestionCircle = ( {
6+ style,
7+ onClick,
8+ size = 24 ,
9+ } : IconProps ) => (
10+ < svg
11+ width = { size }
12+ height = { size }
13+ style = { style }
14+ onClick = { onClick }
15+ viewBox = "0 0 14 14"
16+ fill = "none"
17+ xmlns = "http://www.w3.org/2000/svg"
18+ >
19+ < path
20+ d = "M9.149 6.475L8.519 7.119C8.015 7.623 7.7 8.05 7.7 9.1H6.3V8.75C6.3 7.973 6.615 7.273 7.119 6.769L7.987 5.887C8.246 5.635 8.4 5.285 8.4 4.9C8.4 4.123 7.77 3.5 7 3.5C6.6287 3.5 6.2726 3.6475 6.01005 3.91005C5.7475 4.1726 5.6 4.5287 5.6 4.9H4.2C4.2 4.15739 4.495 3.4452 5.0201 2.9201C5.5452 2.395 6.25739 2.1 7 2.1C7.74261 2.1 8.4548 2.395 8.9799 2.9201C9.505 3.4452 9.8 4.15739 9.8 4.9C9.8 5.516 9.548 6.069 9.149 6.475ZM7.7 11.9H6.3V10.5H7.7V11.9ZM7 0C6.08075 0 5.17049 0.18106 4.32122 0.532843C3.47194 0.884626 2.70026 1.40024 2.05025 2.05025C0.737498 3.36301 0 5.14348 0 7C0 8.85651 0.737498 10.637 2.05025 11.9497C2.70026 12.5998 3.47194 13.1154 4.32122 13.4672C5.17049 13.8189 6.08075 14 7 14C8.85651 14 10.637 13.2625 11.9497 11.9497C13.2625 10.637 14 8.85651 14 7C14 3.129 10.85 0 7 0Z"
21+ fill = "#6B7798"
22+ />
23+ </ svg >
24+ ) ;
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export { IconLogout } from "./icons/logout";
1616export { IconNavigation } from "./icons/navigation" ;
1717export { IconNexus } from "./icons/nexus" ;
1818export { IconPending } from "./icons/pending" ;
19+ export { IconQuestionCircle } from "./icons/questionCircle" ;
1920export { IconDeadRobot } from "./icons/robotDead" ;
2021export { IconSearch } from "./icons/search" ;
2122export { IconShield } from "./icons/shield" ;
You can’t perform that action at this time.
0 commit comments