UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

17 lines (16 loc) 457 B
import React from "react"; export interface RowProps extends React.HTMLAttributes<HTMLTableRowElement> { /** * Row is selected * @default false */ selected?: boolean; /** * Shade the table row on hover. * @default true */ shadeOnHover?: boolean; } export type RowType = React.ForwardRefExoticComponent<RowProps & React.RefAttributes<HTMLTableRowElement>>; export declare const Row: RowType; export default Row;