blob: c4bdd6830887b9724feb1489d14e7266fbccdbbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import React from 'react'
export const ArrowLeft = (
<svg width="25" height="28" viewBox="0 0 25 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19 6L7 13.9931L19 22" stroke="#0F0F0F" strokeWidth="2" strokeMiterlimit="10"/>
</svg>
)
export const ArrowRight = (
<svg width="25" height="28" viewBox="0 0 25 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 22L18 14.0069L6 6" stroke="#0F0F0F" strokeWidth="2" strokeMiterlimit="10"/>
</svg>
)
|