37 lines
744 B
TypeScript
37 lines
744 B
TypeScript
|
import React from "react"
|
||
|
import IconProps from "../types/icon-type"
|
||
|
|
||
|
const ArrowRightIcon: React.FC<IconProps> = ({
|
||
|
size = "16",
|
||
|
color = "currentColor",
|
||
|
...attributes
|
||
|
}) => {
|
||
|
return (
|
||
|
<svg
|
||
|
width={size}
|
||
|
height={size}
|
||
|
viewBox="0 0 16 16"
|
||
|
fill="none"
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
{...attributes}
|
||
|
>
|
||
|
<path
|
||
|
d="M3.33301 8H12.6663"
|
||
|
stroke={color}
|
||
|
strokeWidth="1.5"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
/>
|
||
|
<path
|
||
|
d="M8 3.33331L12.6667 7.99998L8 12.6666"
|
||
|
stroke={color}
|
||
|
strokeWidth="1.5"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
/>
|
||
|
</svg>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default ArrowRightIcon
|