1
0
Fork 0
freesewing/packages/freesewing.shared/components/icons/right.js

9 lines
311 B
JavaScript
Raw Normal View History

/* Sourced from heroicons.com - Thanks guys! */
const Right = () => (
<svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 5l7 7-7 7" />
</svg>
)
export default Right