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.
 
 
 

20 lines
378 B

import React from 'react'
const SvgPlus = props => (
<svg
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
className="plus_svg__feather plus_svg__feather-plus"
{...props}
>
<path d="M12 5v14M5 12h14" />
</svg>
)
export default SvgPlus