All files / components/button-group button-group.styled.js

0% Statements 0/14
0% Branches 0/6
0% Functions 0/4
0% Lines 0/8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77                                                                                                                                                         
import styled from 'styled-components'
import PropTypes from 'prop-types'
 
const ButtonGroupStyled = styled.div`
  display: flex;
  flex-flow: ${p => p.orientation === 'horizontal' ? 'row' : 'column'};
  margin: 10px;
  width:${p => p.width};
 
  &.button-group-vertical
  {
    > button:first-child
    {
      border-top-left-radius: 2px !important;
      border-top-left-radius: 2px !important;
      border-top-width:1px !important;
    }
 
    > button
    {
      border-styled:solid;
      border-width:1px;
      border-radius:0px !important;
      border-bottom-width:0px !important;
    }
 
    > button:last-child
    {
      border-bottom-width:1px !important;
      border-bottom-right-radius: 2px !important;
      border-bottom-right-radius: 2px !important;
    }
  }
 
  &.button-group-horizontal
  {
    > button:first-child
    {
      border-top-left-radius: 2px !important;
      border-bottom-left-radius: 2px !important;
    }
 
    > button
    {
      border-width: 1px;
      border-radius:0px !important;
      border-right-width:0px;
    }
 
    > button:last-child
    {
      border-right-width:1px;
      border-top-right-radius: 2px !important;
      border-bottom-right-radius: 2px !important;
    }
  }
 
  &.button-group-outline
  {
    button {
      border-color:transparent !important;
    }
  }
`
 
ButtonGroupStyled.defaultProps = {
  width: '100%',
  orientation: 'horizontal'
}
 
ButtonGroupStyled.propTypes = {
  width: PropTypes.string,
  orientation: PropTypes.string
}
 
export default ButtonGroupStyled