#TableRow

import TableRow from "@poodle/ui/TableRow";

Please check table document to see the example usage.

#Theming

Please check theming component document here.

export type TableRowStyleKeys = "root"
export interface TableRowThemeConfig
extends StandardThemeConfig<TableRowStyleKeys, TableRowProps> {}

#Props

#Local Props

NameTypeDescription
childrenReact.ReactNode
isSelectedbooleanMark the row is selected with attribute data-selected="true"

#Full Props

export interface TableRowProps
extends BoxProps<"tr">,
StandardComponentProps,
LocalTableRowProps {}