File size: 645 Bytes
246d201 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
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>
);
}
|