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.
12 lines
373 B
12 lines
373 B
import React from 'react'
|
|
|
|
const SvgIconPlus = props => (
|
|
<svg viewBox="0 0 18 18" width="1em" height="1em" {...props}>
|
|
<g fill="none" fillRule="evenodd" stroke="#FD9800" 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
|
|
|