1.0.0-rc.0 • Published 4 years ago

augmented-ui-jsx v1.0.0-rc.0

Weekly downloads
2
License
BSD-2-Clause
Repository
github
Last release
4 years ago

augmented-ui-jsx

Typed JSX implementation of the augmented-ui CSS API built with styled-components

https://github.com/propjockey/augmented-ui

Todo

  • Write Visual test suite
  • Write Unit test suite
  • Add knobs for Storybook
  • Publish Storybook
  • Compose examples for interactives

Examples

// Supports styled-components ThemeProvider
<ThemeProvider
  theme={{
    "aug-border": "3px",
    "aug-border-bg": "grey",
  }}
>
  <Augmented
    aug-clip-x={{ b: true, t: true }}
    aug-round={{ br: true }}
    aug-size={{ b: "10px",t:"20px" }}
    aug-width={{b: "33%", t:"50px"}}
    aug-height={{b: "10px", t: "5px"}}
  >
    <span>test</span>
  </Augmented>
</ThemeProvider>