apphouse
Version:
Component library for React that uses observable state management and theme-able components.
9 lines (8 loc) • 365 B
TypeScript
import { BoxSizeStyles, ThemeTokens } from '../styles/defaults/themes.interface';
import { Unit } from '../types/unit';
/**
* Box sized styles applies a centered focus text with equal
* paddings on top, bottom, left, right based on the size
* @returns CSSProperties
*/
export declare const getBoxSizedStyles: (tokens: ThemeTokens, unit: Unit) => BoxSizeStyles;