import { memo } from "react"; import equal from "react-fast-compare"; import { icons } from "@/components/icons"; import { Base, BaseProps } from "./base"; export type ClearProps = Omit; function RawClear({ iconOnly, ...props }: ClearProps) { return } {...{ iconOnly }} labelText="Clear" />; } export const Clear = memo(RawClear, equal);