carbon-react
Version:
A library of reusable React components for easily building user interfaces.
9 lines (8 loc) • 522 B
TypeScript
import { DlProps } from "./dl.component";
export declare const StyledDl: import("styled-components").StyledComponent<"dl", any, {
theme: object;
} & Omit<DlProps, "dtTextAlign" | "ddTextAlign">, "theme">;
export declare const StyledDt: import("styled-components").StyledComponent<"dt", any, {
theme: object;
} & Pick<DlProps, "dtTextAlign" | "asSingleColumn">, "theme">;
export declare const StyledDd: import("styled-components").StyledComponent<"dd", any, Pick<DlProps, "ddTextAlign" | "asSingleColumn">, never>;