UNPKG

@ferdiunal/refinedev-shadcn-ui

Version:
17 lines 584 B
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