UNPKG

carbon-react

Version:

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

13 lines (12 loc) 414 B
import React from "react"; import { SpaceProps } from "styled-system"; import { TagProps } from "../../../__internal__/utils/helpers/tags"; export interface DdProps extends SpaceProps, TagProps { /** Prop for what will render in the `<Dd></Dd>` tags */ children: React.ReactNode; } declare const Dd: { ({ children, ...rest }: DdProps): React.JSX.Element; displayName: string; }; export default Dd;