Add ICON.INFO - "i" within a circle.

Basically, an inverted ICON.ALERT.
This commit is contained in:
infinite-persistence 2021-05-12 10:29:08 +08:00
parent c24c016eb7
commit ee7d22d41a
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0
2 changed files with 8 additions and 0 deletions

View file

@ -385,6 +385,13 @@ export const icons = {
<line x1="12" y1="16" x2="12" y2="16" />
</g>
),
[ICONS.INFO]: buildIcon(
<g>
<circle cx="12" cy="12" r="10" />
<line x1="12" y1="8" x2="12" y2="8" />
<line x1="12" y1="12" x2="12" y2="16" />
</g>
),
[ICONS.UNLOCK]: buildIcon(
<g>
<rect x="3" y="11" width="18" height="11" rx="2" ry="2" />

View file

@ -6,6 +6,7 @@
export const REWARDS = 'Award';
export const LOCAL = 'Folder';
export const ALERT = 'AlertCircle';
export const INFO = 'InfoCircle';
export const COPY = 'Clipboard';
export const ARROW_LEFT = 'ChevronLeft';
export const ARROW_RIGHT = 'ChevronRight';