Files
old-kivi-za-auta-react/kivi-cars/src/components/Button/rightBtn.js
2022-03-14 10:21:18 +01:00

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