@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
88 lines (87 loc) • 1.67 kB
TypeScript
import { SizePropValue } from '../../hooks/useSizeStyleProp';
export declare type SpacingMarginProps = {
/**
* Alias for `margin` property
*
* @type SizePropValue
*/
m?: SizePropValue;
/**
* Defines margin
*
* @type SizePropValue
*/
margin?: SizePropValue;
/**
* Defines bottom margin
*
* @type SizePropValue
*/
marginBottom?: SizePropValue;
/**
* Defines left margin
*
* @type SizePropValue
*/
marginLeft?: SizePropValue;
/**
* Defines right margin
*
* @type SizePropValue
*/
marginRight?: SizePropValue;
/**
* Defines top margin
*
* @type SizePropValue
*/
marginTop?: SizePropValue;
/**
* Defines left and right margins
*
* @type SizePropValue
*/
marginX?: SizePropValue;
/**
* Defines bottom and top margins
*
* @type SizePropValue
*/
marginY?: SizePropValue;
/**
* Alias for `margin-bottom` property
*
* @type SizePropValue
*/
mb?: SizePropValue;
/**
* Alias for `margin-left` property
*
* @type SizePropValue
*/
ml?: SizePropValue;
/**
* Alias for `margin-right` property
*
* @type SizePropValue
*/
mr?: SizePropValue;
/**
* Alias for `margin-top` property
*
* @type SizePropValue
*/
mt?: SizePropValue;
/**
* Alias for `marginX` property
*
* @type SizePropValue
*/
mx?: SizePropValue;
/**
* Alias for `marginY` property
*
* @type SizePropValue
*/
my?: SizePropValue;
};