Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

onno

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

onno

Responsive style props for building themed design systems

  • 0.0.5
  • npm
  • Socket score

Version published
Weekly downloads
2.5K
increased by7.34%
Maintainers
1
Weekly downloads
 
Created
Source

onno

Code Coverage Bundle Size Build Status

Responsive style props for building themed design systems.

yarn add onno

Features

  • Framework agnostic
  • Zero dependencies
  • First class support for theming
  • Rigorously tested with 100% test coverage
  • Written in TypeScript with comprehensive type definitions and interfaces
  • Works with most CSS in JS libraries including styled-components and emotion

Principles

  • Predictable
  • Extensible
  • Versatile

Usage

import styled from "styled-components"
import { colorSet, spaceSet } from "onno"

const Box = styled.div(colorSet, spaceSet)

// { padding: "16px" }
<Box p={4} />

// { margin: "-32px" }
<Box m={-5} />

// { marginLeft: "8px", marginRight: "8px", paddingBottom: "4px" }
<Box mx={3} pb={2} />

// { backgroundColor: "red", color: "white" }
<Box bgc="red" tc="white" />

// { background: "url(onno.png) center" }
<Box bg="url(onno.png) center" />

Author

Matthew Wagerfield

License

MIT

Keywords

FAQs

Package last updated on 21 May 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc