sowiecki / withStyles

Home Page:https://www.npmjs.com/package/withstyles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A React Higher-Order Component (HOC) for efficiently creating stylesheets based on component props.

Use with CSS-in-JS implementations such as emotion and glamor.

import { css } from "emotion";

const stylesGenerator = props => ({
  input: css`
    color: #0000ff;
  `,

  button: css`
    border: 2px solid #00ff00;
    color: #ff0000;
  `
});

class Form extends Component {
  renderInput = () => {
    // Styles don't have to be re-computed within class methods!
    const { computedStyles } = this.props;

    return <input type="text" className={computedStyles.input} />;
  };

  render() {
    const { computedStyles, children } = this.props;

    return (
      <div>
        {this.renderInput()}
        <button className={computedStyles.button}>{children}</button>
      </div>
    );
  }
}

export default withStyles(stylesGenerator)(Button);

About

https://www.npmjs.com/package/withstyles

License:MIT License


Languages

Language:JavaScript 100.0%