Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { styled } from 'styleh-components'
import { MaterialIcon } from '@skava/ui/dist/components/atoms/MaterialIcon'
import {
  SelectDropDown,
  StyledSelect,
} from '@skava/ui/dist/components/molecules/SelectDropDown'

/* ${StyledSelect} = styling the text of the parent text */
const DarkSelectDropDownStyle = styled(SelectDropDown) `
  width: 65px;
  height: 24px;
  background-color: var(--color-light-grey);
  ${StyledSelect} {
    padding: 0;
    justify-content: center;
    span {
      color: white;
    }
  }
`

const StyledMaterialIcon = styled(MaterialIcon) `
  g {
    fill: #ffffff;
  }
`

export { DarkSelectDropDownStyle, StyledMaterialIcon }