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.
29 lines
556 B
29 lines
556 B
import React from 'react'
|
|
|
|
const SvgX = props => (
|
|
<svg
|
|
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
viewBox="0 0 22 20"
|
|
width="1em"
|
|
height="1em"
|
|
{...props}
|
|
>
|
|
<defs>
|
|
<path
|
|
id="a"
|
|
d="M10 10L0 20l10-10L0 0l10 10L20 0l-8.394 8.394L10 10l1.606 1.606L20 20 10 10z"
|
|
/>
|
|
</defs>
|
|
<use
|
|
fill="none"
|
|
fillRule="evenodd"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
transform="translate(1)"
|
|
xlinkHref="#a"
|
|
/>
|
|
</svg>
|
|
)
|
|
|
|
export default SvgX
|
|
|