38 lines
701 B
TypeScript
38 lines
701 B
TypeScript
import React from 'react'
|
|
|
|
import IconProps from '../types/icon-type'
|
|
|
|
const CrossIcon: React.FC<IconProps> = ({
|
|
size = '20',
|
|
color = 'currentColor',
|
|
...attributes
|
|
}) => {
|
|
return (
|
|
<svg
|
|
width={size}
|
|
height={size}
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...attributes}
|
|
>
|
|
<path
|
|
d="M15 5L5 15"
|
|
stroke={color}
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M5 5L15 15"
|
|
stroke={color}
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default CrossIcon
|