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    
@skava/styleh-toolset / src / index.ts
Size: Mime:
import { colorSwatches } from './colors'
import { font, fontValue } from './font'
import { media } from './media'
import { spacing, rem } from './spacing'

export const defaultRootProperties = `
  :root {
    ${spacing}
    ${colorSwatches}
  }
`

export const styledHelpers = {
  defaultRootProperties,
  rem,
  font,
  fontValue,
  colorSwatches,
  spacing,
  media,
}

export * from './colors'
export * from './font'
export * from './media'
export * from './spacing'
export * from './typings'