apphouse
Version:
Component library for React that uses observable state management and theme-able components.
13 lines (12 loc) • 312 B
TypeScript
/**
* Gutter styles
* @param value spacing value
* @returns css styles that adds equal top, left, right and bottom margins
*/
export declare const getGutters: (gutters: number) => {
padding: string;
paddingTop: string;
paddingRight: string;
paddingBottom: string;
paddingLeft: string;
};