1
0
Fork 0
freesewing/sites/shared/components/icons/close.js

9 lines
319 B
JavaScript
Raw Normal View History

2021-12-31 10:15:51 +01:00
/* Sourced from heroicons.com - Thanks guys! */
const Close = () => (
<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="M6 18L18 6M6 6l12 12" />
</svg>
)
export default Close