import { Button } from "@repo/shadcn-ui/components"; import { t } from "i18next"; import { PlusCircleIcon } from "lucide-react"; import { JSX, forwardRef } from "react"; export interface AppendEmptyRowButtonProps extends React.ComponentProps { label?: string; className?: string; } export const AppendEmptyRowButton = forwardRef( ( { label = t("common.append_empty_row"), className, ...props }: AppendEmptyRowButtonProps, ref ): JSX.Element => ( ) ); AppendEmptyRowButton.displayName = "AppendEmptyRowButton";