Skip to content

Commit

Permalink
chore: correct types from datagrid
Browse files Browse the repository at this point in the history
  • Loading branch information
SiTaggart committed Oct 3, 2023
1 parent 2d60e24 commit bcfbfad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/paste-core/components/data-grid/src/table/Tr.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import type { TrProps as TableTrProps } from "@twilio-paste/table";
import * as React from "react";

export interface TrProps extends TableTrProps {
role: string;
striped: boolean;
role?: string;
striped?: boolean;
selected?: boolean;
}

Expand Down

0 comments on commit bcfbfad

Please sign in to comment.