Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions assets/icons/experimental/question-mark-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions src/icons/experimental/QuestionMarkCircleIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// DO NOT EDIT. This file was generated by running `npm run generate`.;
import * as React from 'react';
import { get } from '../../utils/themeGet';
import { IconProps } from '../IconProps';
type Props = IconProps;
const QuestionMarkCircleIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
const props = { ...rest, color };
const sizePx = Number.isFinite(size as number)
? size
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
return (
<svg
{...props}
width={sizePx}
height={sizePx}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M11.95 18c.35 0 .646-.12.888-.363.241-.241.362-.537.362-.887s-.12-.646-.362-.887a1.207 1.207 0 00-.888-.363c-.35 0-.646.12-.887.363a1.207 1.207 0 00-.363.887c0 .35.12.646.363.887.241.242.537.363.887.363zm.05 4a9.738 9.738 0 01-3.9-.788 10.099 10.099 0 01-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.738 9.738 0 012 12c0-1.383.263-2.683.788-3.9a10.099 10.099 0 012.137-3.175c.9-.9 1.958-1.612 3.175-2.137A9.738 9.738 0 0112 2c1.383 0 2.683.263 3.9.788a10.098 10.098 0 013.175 2.137c.9.9 1.613 1.958 2.137 3.175A9.738 9.738 0 0122 12a9.738 9.738 0 01-.788 3.9 10.098 10.098 0 01-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137A9.738 9.738 0 0112 22zm0-2c2.233 0 4.125-.775 5.675-2.325C19.225 16.125 20 14.233 20 12c0-2.233-.775-4.125-2.325-5.675C16.125 4.775 14.233 4 12 4c-2.233 0-4.125.775-5.675 2.325C4.775 7.875 4 9.767 4 12c0 2.233.775 4.125 2.325 5.675C7.875 19.225 9.767 20 12 20zm.1-12.3c.417 0 .78.133 1.088.4.308.267.462.6.462 1 0 .367-.113.692-.338.975-.224.283-.479.55-.762.8-.383.333-.72.7-1.013 1.1-.291.4-.437.85-.437 1.35 0 .233.088.43.263.588.175.158.379.237.612.237a.89.89 0 00.638-.25c.175-.167.287-.375.337-.625.067-.35.217-.662.45-.938.233-.274.483-.537.75-.787.383-.367.713-.767.987-1.2a2.65 2.65 0 00.413-1.45c0-.85-.346-1.546-1.038-2.088C13.821 6.271 13.017 6 12.1 6c-.633 0-1.237.133-1.813.4a2.796 2.796 0 00-1.312 1.225.902.902 0 00-.112.637.739.739 0 00.337.513c.233.133.475.175.725.125a.996.996 0 00.625-.425c.183-.25.412-.442.688-.575.274-.133.562-.2.862-.2z"
fill="#1E1A1A"
/>
</svg>
);
};
export default QuestionMarkCircleIcon;
1 change: 1 addition & 0 deletions src/icons/experimental/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ export { default as PinIcon } from './PinIcon';
export { default as SwapIcon } from './SwapIcon';
export { default as CalendarAddIcon } from './CalendarAddIcon';
export { default as ShieldAccountIcon } from './ShieldAccountIcon';
export { default as QuestionMarkCircleIcon } from './QuestionMarkCircleIcon';
Loading