liber-salti
Version:
Saltí - Liber Design System
19 lines (18 loc) • 382 B
TypeScript
export interface CardRowProps {
/**
* The title of the row.
*/
title: string;
/**
* The subtitle of the row.
*/
subtitle?: string;
/**
* If `true`, title and subtitle are shown side by side.
*/
horizontal?: boolean;
/**
* If `true`, the content will be monospaced.
*/
monospaced?: boolean;
}