0.0.1 • Published 5 years ago

ts-styled-components v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

ts-styled-components

Using typescript interface in styled-components

Usage

Install

npm i ts-styled-components --save
yarn add ts-styled-components

Usage

import withProps from 'ts-styled-components'

interface IProps {
  isTest: boolean,
}

const styles = {
  containers: withProps<IProps>()(styled.view)`
    width: ${(props) => props.isTest ? '600' : '200' }px;
  `
};