UNPKG

react-raster

Version:

Advanced grid- and styling-system which is highly customizable and ready for server-side-rendering.

19 lines (18 loc) 447 B
interface Props { contextGap?: { row: string; column: string; }; propsGap?: string | string[]; gridGap?: string | string[]; rowGap?: string | string[]; columnGap?: string | string[]; gridColumnGap?: string | string[]; gridRowGap?: string | string[]; breakpoint: number; } declare const useGap: (props: Props) => { row: string; column: string; }; export default useGap;