ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
645 Bytes
import { Button } from "@nextui-org/react";
import React, { ReactElement } from "react";
export interface IconButtonProps {
icon: ReactElement;
onClick: () => void;
ariaLabel: string;
testId?: string;
}
export function IconButton({
icon,
onClick,
ariaLabel,
testId = "",
}: IconButtonProps): React.ReactElement {
return (
<Button
type="button"
variant="flat"
onPress={onClick}
className="cursor-pointer text-[12px] bg-transparent aspect-square px-0 min-w-[20px] h-[20px]"
aria-label={ariaLabel}
data-testid={testId}
>
{icon}
</Button>
);
}