import { Property } from 'csstype'; import { cssProperty } from '../utils/style'; import { TLength } from './typings'; // left; right; both; none; export const clear = cssProperty('clear'); // right; left; none; export const float = cssProperty('float'); // integer export const left = cssProperty>('left'); // static; fixed; absolute; relative; sticky; export const position = cssProperty('position'); // integer export const right = cssProperty>('right'); // integer export const top = cssProperty>('top'); // integer export const bottom = cssProperty>('bottom'); // auto or integer export const zIndex = cssProperty('z-index');