UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

43 lines (42 loc) 1.16 kB
import { EPV, Value } from "./"; export interface PositionProps { position?: EPV<string>; positionSm?: EPV<string>; positionMd?: EPV<string>; positionLg?: EPV<string>; positionXl?: EPV<string>; zIndex?: EPV<Value>; zIndexSm?: EPV<Value>; zIndexMd?: EPV<Value>; zIndexLg?: EPV<Value>; zIndexXl?: EPV<Value>; left?: EPV<Value>; leftSm?: EPV<Value>; leftMd?: EPV<Value>; leftLg?: EPV<Value>; leftXl?: EPV<Value>; right?: EPV<Value>; rightSm?: EPV<Value>; rightMd?: EPV<Value>; rightLg?: EPV<Value>; rightXl?: EPV<Value>; top?: EPV<Value>; topSm?: EPV<Value>; topMd?: EPV<Value>; topLg?: EPV<Value>; topXl?: EPV<Value>; bottom?: EPV<Value>; bottomSm?: EPV<Value>; bottomMd?: EPV<Value>; bottomLg?: EPV<Value>; bottomXl?: EPV<Value>; } declare const _default: { position: string; zIndex: (v: any, t: any) => string; left: (v: any, t: any) => string; top: (v: any, t: any) => string; right: (v: any, t: any) => string; bottom: (v: any, t: any) => string; }; export default _default;