mirror of https://github.com/lukechilds/docs.git
Thomas Osmonson
4 years ago
11 changed files with 105 additions and 1429 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
@ -0,0 +1,11 @@ |
|||
import React from 'react'; |
|||
import { BaseSvg, SvgProps } from '@components/icons/_base'; |
|||
|
|||
export const ArrowLeftIcon: SvgProps = props => ( |
|||
<BaseSvg {...props}> |
|||
<path stroke="none" d="M0 0h24v24H0z" /> |
|||
<line x1="5" y1="12" x2="19" y2="12" /> |
|||
<line x1="5" y1="12" x2="11" y2="18" /> |
|||
<line x1="5" y1="12" x2="11" y2="6" /> |
|||
</BaseSvg> |
|||
); |
@ -0,0 +1,11 @@ |
|||
import React from 'react'; |
|||
import { BaseSvg, SvgProps } from '@components/icons/_base'; |
|||
|
|||
export const ArrowRightIcon: SvgProps = props => ( |
|||
<BaseSvg {...props}> |
|||
<path stroke="none" d="M0 0h24v24H0z" /> |
|||
<line x1="5" y1="12" x2="19" y2="12" /> |
|||
<line x1="13" y1="18" x2="19" y2="12" /> |
|||
<line x1="13" y1="6" x2="19" y2="12" /> |
|||
</BaseSvg> |
|||
); |
Loading…
Reference in new issue