Socket
Socket
Sign inDemoInstall

absui-core

Package Overview
Dependencies
14
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    absui-core

Absolute UI Core Library Bundle for React


Version published
Maintainers
1
Created

Readme

Source

absui-core

Absolute UI Core Library Bundle for React

NPM JavaScript Style Guide

Install

npm install --save absui-core

Usage

import React from 'react'
import { FlexRowEven, MenuIcon, NewWindowIcon, DoneIcon, useTheme } from 'absui-core'
import 'absui-core/dist/index.css'
const App = () => {
  const { theme, screenSize } = useTheme({ spacing: "xs", color: "rustic", variant: 1 })
  return (
    <FlexRowEven>
      <MenuIcon fill={theme?.color?.variants?.basePrimary} size={screenSize} />
      <NewWindowIcon fill={theme?.color?.variants?.basePrimary} size={screenSize} />
      <DoneIcon fill={theme?.color?.variants?.basePrimary} size={screenSize} />
    </FlexRowEven>
  )
}
export default App

Check the docs folder for more example

Powered By

License

MIT © abschill

FAQs

Last updated on 08 Jul 2021

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