mirror of https://github.com/lukechilds/docs.git
Thomas Osmonson
4 years ago
6 changed files with 100 additions and 31 deletions
@ -0,0 +1,11 @@ |
|||||
|
import React from 'react'; |
||||
|
import { BaseSvg, SvgProps } from '@components/icons/_base'; |
||||
|
|
||||
|
export const AlertCircleIcon: SvgProps = props => ( |
||||
|
<BaseSvg {...props}> |
||||
|
<path stroke="none" d="M0 0h24v24H0z" /> |
||||
|
<circle cx="12" cy="12" r="9" /> |
||||
|
<line x1="12" y1="8" x2="12" y2="12" /> |
||||
|
<line x1="12" y1="16" x2="12.01" y2="16" /> |
||||
|
</BaseSvg> |
||||
|
); |
@ -0,0 +1,10 @@ |
|||||
|
import React from 'react'; |
||||
|
import { BaseSvg, SvgProps } from '@components/icons/_base'; |
||||
|
|
||||
|
export const AlertTriangleIcon: SvgProps = props => ( |
||||
|
<BaseSvg {...props}> |
||||
|
<path stroke="none" d="M0 0h24v24H0z" /> |
||||
|
<path d="M12 9v2m0 4v.01" /> |
||||
|
<path d="M5.07 19H19a2 2 0 0 0 1.75 -2.75L13.75 4a2 2 0 0 0 -3.5 0L3.25 16.25a2 2 0 0 0 1.75 2.75" /> |
||||
|
</BaseSvg> |
||||
|
); |
@ -0,0 +1,10 @@ |
|||||
|
import React from 'react'; |
||||
|
import { BaseSvg, SvgProps } from '@components/icons/_base'; |
||||
|
|
||||
|
export const CheckCircleIcon: SvgProps = props => ( |
||||
|
<BaseSvg {...props}> |
||||
|
<path stroke="none" d="M0 0h24v24H0z" /> |
||||
|
<circle cx="12" cy="12" r="9" /> |
||||
|
<path d="M9 12l2 2l4 -4" /> |
||||
|
</BaseSvg> |
||||
|
); |
@ -0,0 +1,11 @@ |
|||||
|
import React from 'react'; |
||||
|
import { BaseSvg, SvgProps } from '@components/icons/_base'; |
||||
|
|
||||
|
export const InfoCircleIcon: SvgProps = props => ( |
||||
|
<BaseSvg {...props}> |
||||
|
<path stroke="none" d="M0 0h24v24H0z" /> |
||||
|
<circle cx="12" cy="12" r="9" /> |
||||
|
<line x1="12" y1="8" x2="12.01" y2="8" /> |
||||
|
<polyline points="11 12 12 12 12 16 13 16" /> |
||||
|
</BaseSvg> |
||||
|
); |
Loading…
Reference in new issue