UNPKG

carbon-react

Version:

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

13 lines (12 loc) 405 B
import React from "react"; import { PaddingProps } from "styled-system"; import { TagProps } from "../../../__internal__/utils/helpers/tags/tags"; export interface CardRowProps extends PaddingProps, TagProps { /** Child nodes */ children: React.ReactNode; } declare const CardRow: { ({ children, ...rest }: CardRowProps): React.JSX.Element; displayName: string; }; export default CardRow;