@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
88 lines (87 loc) • 1.69 kB
TypeScript
import { SizePropValue } from '../../hooks/useSizeStyleProp';
export declare type SpacingPaddingProps = {
/**
* Alias for `padding` property
*
* @type SizePropValue
*/
p?: SizePropValue;
/**
* Defines padding
*
* @type SizePropValue
*/
padding?: SizePropValue;
/**
* Defines bottom padding
*
* @type SizePropValue
*/
paddingBottom?: SizePropValue;
/**
* Defines left padding
*
* @type SizePropValue
*/
paddingLeft?: SizePropValue;
/**
* Defines right padding
*
* @type SizePropValue
*/
paddingRight?: SizePropValue;
/**
* Defines top padding
*
* @type SizePropValue
*/
paddingTop?: SizePropValue;
/**
* Defines left and right paddings
*
* @type SizePropValue
*/
paddingX?: SizePropValue;
/**
* Defines bottom and top paddings
*
* @type SizePropValue
*/
paddingY?: SizePropValue;
/**
* Alias for `padding-bottom` property
*
* @type SizePropValue
*/
pb?: SizePropValue;
/**
* Alias for `padding-left` property
*
* @type SizePropValue
*/
pl?: SizePropValue;
/**
* Alias for `padding-right` property
*
* @type SizePropValue
*/
pr?: SizePropValue;
/**
* Alias for `padding-top` property
*
* @type SizePropValue
*/
pt?: SizePropValue;
/**
* Alias for `paddingX` property
*
* @type SizePropValue
*/
px?: SizePropValue;
/**
* Alias for `paddingY` property
*
* @type SizePropValue
*/
py?: SizePropValue;
};