Add missing arrow icon

This commit is contained in:
Jackson Harper 2023-08-29 10:22:27 +08:00
parent 766e32d872
commit 878d106338

View file

@ -0,0 +1,43 @@
/* eslint-disable functional/no-class */
/* eslint-disable functional/no-this-expression */
import { IconProps } from './IconProps'
import React from 'react'
export class ArrowRightIcon extends React.Component<IconProps> {
render() {
const size = (this.props.size || 26).toString()
const color = (this.props.color || '#2A2A2A').toString()
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 16 16"
fill="none"
>
<g>
<path
d="M3.33398 8H12.6673"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M10 10.6667L12.6667 8"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M10 5.33203L12.6667 7.9987"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
</svg>
)
}
}