burhanuday / stylish

A clone of styled-components for a blog post. Not for actual use

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stylish 💅

A lightweight css-in-js library for react with the same API as styled-components

NPM JavaScript Style Guide

Install

npm install --save stylish

Usage

import React, { Component } from "react";

import stylish from "stylish";

const H1 = stylish("h1")(
  `
  color: green;
  `,
);

const App = () => {
  return <H1>Hi there</H1>;
};

License

MIT © burhanuday

About

A clone of styled-components for a blog post. Not for actual use


Languages

Language:JavaScript 71.2%Language:HTML 23.3%Language:CSS 5.5%