react-raster
Version:
Advanced grid- and styling-system which is highly customizable and ready for server-side-rendering.
22 lines (21 loc) • 468 B
TypeScript
interface Gap {
row?: string;
column?: string;
}
interface Props {
contextGap?: {
row: string;
column: string;
};
gap: Gap;
gridGap: Gap;
rowGap?: string;
columnGap?: string;
gridColumnGap?: string;
gridRowGap?: string;
}
export default function getGap({ contextGap, gap, gridGap, rowGap, columnGap, gridColumnGap, gridRowGap, }: Props): {
row: string;
column: string;
};
export {};