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    
ui-component-library / src / playground / Button / breed / GhostButton.tsx
Size: Mime:
import { styled } from 'uxui-modules/view-container'
import Button from '../BaseButtonAtom'

const StyledGhostButton = styled.withComponent(Button) `
  border: 1px solid $colors-body-text;
  padding: $spacing-small $spacing;
  text-align: center;
  text-transform: uppercase;
  border-radius: $border-radius;
  @font(13, semi);
  cursor: pointer;
  justify-content: center;
  align-items: center;
`