@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
15 lines (14 loc) • 472 B
TypeScript
import React from "react";
export declare const PriceTable: {
({ children }: {
children: React.ReactNode;
}): React.JSX.Element;
Row: ({ label, value, discounted, }: PriceTableRowProps) => React.JSX.Element;
};
export interface PriceTableRowProps {
label: string;
value: string;
discounted?: boolean;
}
export declare const PriceTableRow: ({ label, value, discounted, }: PriceTableRowProps) => React.JSX.Element;
export default PriceTable;