Socket
Socket
Sign inDemoInstall

@filbert-js/core

Package Overview
Dependencies
13
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @filbert-js/core

A light weight(~1KB) css-in-js solution(framework)🎨


Version published
Weekly downloads
23
increased by64.29%
Maintainers
1
Install size
58.6 kB
Created
Weekly downloads
 

Readme

Source

@filbert-js/core

A light weight(~1KB) css-in-js solution(framework)🎨.

Install

yarn add @filbert-js/core

Usage

import React from 'react';
import { styled, Global } from '@filbert-js/core';

const Button = styled('button')`
  background: pink;
  border: solid 1px gray;
`;

render(
  <>
    <Button>This is a Button component.</Button>
    <Global
      styles={`
          .text {
            background: hotpink;
            padding: 1rem;
          }
        `}
    />
    <div className="text">I'm pink</div>
  </>,
);

More documentation is available at https://filbert-js.vercel.app.

Keywords

FAQs

Last updated on 22 Dec 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc