You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
378 B
13 lines
378 B
6 years ago
|
import React from 'react'
|
||
|
|
||
|
const SvgIconPlus = props => (
|
||
|
<svg viewBox="0 0 18 18" width="1em" height="1em" {...props}>
|
||
|
<g fill="none" fillRule="evenodd" stroke="currentColor" transform="translate(1 1)">
|
||
|
<path d="M8.09 5v6M5 8.09h6" strokeLinecap="round" strokeLinejoin="round" />
|
||
|
<circle cx={8} cy={8} r={8} />
|
||
|
</g>
|
||
|
</svg>
|
||
|
)
|
||
|
|
||
|
export default SvgIconPlus
|