// @flow
import directionalProperty from '../helpers/directionalProperty'
/**
* The padding shorthand accepts up to four values, including null to skip a value, and uses the directional-property mixin to map them to their respective directions.
* @example
* // Styles as object usage
* const styles = {
* ...padding('12px', '24px', '36px', '48px')
* }
*
* // styled-components usage
* const div = styled.div`
* ${padding('12px', '24px', '36px', '48px')}
* `
*
* // CSS as JS Output
*
* div {
* 'padding-top': '12px',
* 'padding-right': '24px',
* 'padding-bottom': '36px',
* 'padding-left': '48px'
* }
*/
function padding(...values: Array<?string>) {
return directionalProperty('padding', ...values)
}
export default padding
|