@duffel/components
Version:
Component library to build your travel product with Duffel.
15 lines (14 loc) • 418 B
TypeScript
import * as React from "react";
type DivProps = JSX.IntrinsicElements["div"];
export interface VSpaceProps extends DivProps {
/**
* A space-delimited list of class names to pass along to a child element.
*/
className?: string;
/**
* The vertical spacing between each child element
*/
space: 0 | 4 | 8 | 12 | 16 | 24;
}
export declare const VSpace: React.FC<VSpaceProps>;
export {};