Files
turnstone/examples/geo/components/cancelButton/cancelButton.jsx
Tom Southall 55354f5168 Remove xmlns
2022-03-04 16:27:49 +00:00

12 lines
356 B
JavaScript

import React from 'react'
import styles from './cancelButton.module.css'
const DefaultCancel = () => {
return (
<svg className={styles.svg} fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
<path strokeLinecap="round" strokeLinejoin="round" d="M11 17l-5-5m0 0l5-5m-5 5h12" />
</svg>
)
}
export default DefaultCancel