10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
import './button.css'
|
|
import { ReactComponent as ArrowRight } from '../../assets/arrow-right.svg';
|
|
|
|
const rightBtn = (props) => {
|
|
return (
|
|
<ArrowRight/>
|
|
);
|
|
}
|
|
|
|
export default rightBtn |