import { classNames } from '@standardnotes/utils' import { ComponentPropsWithoutRef } from 'react' import Icon from '../Icon/Icon' type Props = ComponentPropsWithoutRef<'button'> const ClearInputButton = ({ className, ...props }: Props) => { return ( ) } export default ClearInputButton