@hope-ui/solid
Version:
The SolidJS component library you've hoped for.
44 lines • 1.03 kB
TypeScript
import { Property } from "csstype";
import { KeysOf } from "../types";
/**
* Types for layout related CSS properties
*/
export declare type LayoutProps = Partial<{
/**
* The CSS `display` property
*/
display: Property.Display;
/**
* The CSS `display` property
*/
d: Property.Display;
/**
* The CSS `vertical-align` property
*/
verticalAlign: Property.VerticalAlign;
/**
* The CSS `overflow` property
*/
overflow: Property.Overflow;
/**
* The CSS `overflow-x` property
*/
overflowX: Property.OverflowX;
/**
* The CSS `overflow-y` property
*/
overflowY: Property.OverflowY;
/**
* The CSS `object-fit` property
*/
objectFit?: Property.ObjectFit;
/**
* The CSS `object-position` property
*/
objectPosition?: Property.ObjectPosition;
}>;
/**
* Style prop names for layout related properties
*/
export declare const layoutPropNames: KeysOf<LayoutProps>;
//# sourceMappingURL=layout.d.ts.map