UNPKG

@gannochenko/ui.styled-components

Version:

<!-- PROJECT SHIELDS --> <!-- *** Reference links are enclosed in brackets [ ] instead of parentheses ( ). *** See the bottom of this document for the declaration of the reference variables *** for contributors-url, forks-url, etc. This is an optional, co

18 lines (17 loc) 724 B
import { ObjectLiteralType, ScalarType } from '../type'; export declare type WidthPropsType = Partial<{ width: ScalarType; maxWidth: ScalarType; minWidth: ScalarType; wide: boolean; theme: ObjectLiteralType; }>; export declare type HeightPropsType = Partial<{ height: ScalarType; maxHeight: ScalarType; minHeight: ScalarType; tall: boolean; theme: ObjectLiteralType; }>; export declare const widthProps: ({ width, maxWidth, minWidth, wide, theme, }: WidthPropsType) => import("styled-components").FlattenSimpleInterpolation; export declare const heightProps: ({ height, maxHeight, minHeight, tall, theme, }: HeightPropsType) => import("styled-components").FlattenSimpleInterpolation;