UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 394 B
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 };