All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.cjs.components.stack.get-separator-style.cjs Maven / Gradle / Ivy

Go to download

Responsive and accessible React UI components built with React and Emotion

The newest version!
"use strict";
'use strict';

var walkObject = require('../../utils/walk-object.cjs');

function getSeparatorStyles(options) {
  const { gap, direction } = options;
  const styles = {
    column: {
      marginY: gap,
      marginX: 0,
      borderInlineStartWidth: 0,
      borderTopWidth: "1px"
    },
    "column-reverse": {
      marginY: gap,
      marginX: 0,
      borderInlineStartWidth: 0,
      borderTopWidth: "1px"
    },
    row: {
      marginX: gap,
      marginY: 0,
      borderInlineStartWidth: "1px",
      borderTopWidth: 0
    },
    "row-reverse": {
      marginX: gap,
      marginY: 0,
      borderInlineStartWidth: "1px",
      borderTopWidth: 0
    }
  };
  return {
    "&": walkObject.mapObject(direction, (value) => styles[value])
  };
}

exports.getSeparatorStyles = getSeparatorStyles;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy