@ferdiunal/refinedev-shadcn-ui
Version:
theme for refine.dev with shadcn-ui
17 lines • 584 B
TypeScript
import { PropsWithChildren, ReactNode } from "react";
interface RowActionsProps {
children?: ReactNode;
}
export type RowActionProps = PropsWithChildren & {
to?: string;
title?: string;
asChild?: boolean;
className?: string;
disabled?: boolean;
icon?: ReactNode;
onClick?: (event: any) => void;
};
export declare const RowAction: (props: RowActionProps) => import("react/jsx-runtime").JSX.Element;
export declare function RowActions({ children }: RowActionsProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map