1.4.0 • Published 4 years ago

@routerating/stencil-styled-components v1.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Stencil Styled-Components

Forked from https://github.com/auderer/stencil-styled-components.

Small library to bring the concept of styled-components to StencilJS.

Installation

npm i stencil-styled-components

Usage

import { Component } from '@stencil/core'
import styled from 'stencil-styled-components'

const StyledDiv = styled.div`
  display: inline-block;
  background-color: ${props => props.invert ? 'black' : 'white'};
  color: ${props => props.invert ? 'white' : 'black'};
  width: 100px;
  height: 100px;

  &:hover {
    border: 1px solid #448aff;
  }
`

@Component({
  tag: 'my-component'
})
export class MyComponent {
  render() {
    return (
      <div>
        <StyledDiv>
          <span>Hey, I'm styled!</span>
        </StyledDiv>
        <StyledDiv invert>
          <span>Hey, I'm inverted with a prop!</span>
        </StyledDiv>
      </div>
    )
  }
}