UNPKG

carbon-react

Version:

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

8 lines (7 loc) 312 B
import { CardAlign } from "../card.config"; export interface StyledCardColumnProps { /** Text alignment of the card section text */ align: CardAlign; } declare const StyledCardColumn: import("styled-components").StyledComponent<"div", any, StyledCardColumnProps, never>; export default StyledCardColumn;