@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 394 B
TypeScript
import React, { CSSProperties, ReactNode } from 'react';
type Props = {
children: ReactNode;
isActive?: boolean;
className?: string;
style?: CSSProperties;
onRowClicked?: (id: number | string) => void;
rowId?: number | string;
};
declare const Row: ({ children, className, style, isActive, onRowClicked, rowId, }: Props) => React.JSX.Element;
export { Row };