27 lines
829 B
TypeScript
27 lines
829 B
TypeScript
import { Button } from './ui'
|
|
import { t } from '@/lib/i18n'
|
|
|
|
interface ClearButtonProps {
|
|
onClick: () => void
|
|
}
|
|
|
|
export function ClearButton({ onClick }: ClearButtonProps): React.ReactElement {
|
|
return (
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
onClick={onClick}
|
|
className="text-neon-cyan/70 hover:text-neon-cyan p-0 h-auto"
|
|
aria-label={t('search.clear')}
|
|
>
|
|
<svg className="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
<path
|
|
fillRule="evenodd"
|
|
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
</Button>
|
|
)
|
|
}
|