3.1.4 • Published 6 years ago

themmer v3.1.4

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Themmer

Build Status style: styled-components

Easily access theme prop in styled-components

Install

npm i -S themmer

Why

// Quite ugly theme accessing
const UglyComponent = styled.div`
  background-color: ${props => props.theme.color.main.light};
  color: ${props => props.theme.color.main.dark};
`

What

import tm from 'themmer'
// Less ugly theme accessing
const LessUglyComponent = styled.div`
  background-color: ${tm`color.main.light`};
  color: ${tm`color.main.dark`};
`
3.1.4

6 years ago

3.1.3

6 years ago

3.1.0

6 years ago

3.0.0

6 years ago

2.0.0

6 years ago

1.0.0

6 years ago