@hope-ui/solid
Version:
The SolidJS component library you've hoped for.
63 lines • 1.52 kB
TypeScript
import type { PropertyValue } from "@stitches/core";
export declare const size: {
/**
* The CSS `width` property
*/
w: (value: PropertyValue<"width">) => {
width: {
readonly [$$PropertyValue]: "width";
};
};
/**
* The CSS `min-width` property
*/
minW: (value: PropertyValue<"minWidth">) => {
minWidth: {
readonly [$$PropertyValue]: "minWidth";
};
};
/**
* The CSS `max-width` property
*/
maxW: (value: PropertyValue<"maxWidth">) => {
maxWidth: {
readonly [$$PropertyValue]: "maxWidth";
};
};
/**
* The CSS `height` property
*/
h: (value: PropertyValue<"height">) => {
height: {
readonly [$$PropertyValue]: "height";
};
};
/**
* The CSS `min-height` property
*/
minH: (value: PropertyValue<"minHeight">) => {
minHeight: {
readonly [$$PropertyValue]: "minHeight";
};
};
/**
* The CSS `max-height` property
*/
maxH: (value: PropertyValue<"maxHeight">) => {
maxHeight: {
readonly [$$PropertyValue]: "maxHeight";
};
};
/**
* The CSS `width` and `height` property
*/
boxSize: (value: PropertyValue<"width">) => {
width: {
readonly [$$PropertyValue]: "width";
};
height: {
readonly [$$PropertyValue]: "width";
};
};
};
//# sourceMappingURL=size.d.ts.map