UNPKG

carbon-react

Version:

A library of reusable React components for easily building user interfaces.

18 lines (17 loc) 737 B
import { PaddingProps } from "styled-system"; import { FlatTableCellProps } from "./flat-table-cell.component"; interface StyledFlatTableCellProps extends Pick<FlatTableCellProps, "align" | "verticalBorder" | "verticalBorderColor">, PaddingProps { makeCellSticky: boolean; colWidth?: number; isTruncated: boolean; leftPosition: number; rightPosition: number; expandable?: boolean; } declare const StyledFlatTableCell: import("styled-components").StyledComponent<"td", any, { theme: object; } & StyledFlatTableCellProps, "theme">; declare const StyledCellContent: import("styled-components").StyledComponent<"div", any, { expandable?: boolean; }, never>; export { StyledFlatTableCell, StyledCellContent };