mirror of
https://github.com/fergalmoran/turnstone.git
synced 2025-12-30 05:39:47 +00:00
12 lines
346 B
JavaScript
12 lines
346 B
JavaScript
import React from 'react'
|
|
import styles from './clearButton.module.css'
|
|
|
|
const DefaultClear = () => {
|
|
return (
|
|
<svg className={styles.svg} fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M6 18L18 6M6 6l12 12" />
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default DefaultClear |