carbon-react
Version:
A library of reusable React components for easily building user interfaces.
10 lines (9 loc) • 356 B
TypeScript
import { CardSpacing } from "../card.config";
import { CardRowProps } from "./card-row.component";
export interface StyledCardRowProps extends CardRowProps {
spacing: CardSpacing;
}
declare const StyledCardRow: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledCardRowProps, "theme">;
export default StyledCardRow;