🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

steffes-ui

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

steffes-ui

Steffes Group UI package.

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
2
Created
Source

steffes-ui

Steffes Group UI package.

NPM JavaScript Style Guide CircleCI codecov

Install

npm install --save steffes-ui

Usage

import React, { Component } from 'react'

import {Box} from 'steffes-ui'
import 'steffes-ui/dist/index.css'

class Example extends Component {
  render() {
    return <Box
        bg='black'
     />
  }
}

Components

Box

Description

Uses the styled-system API to style a <div/> component.

Usage

import React, { Component } from 'react'

import {Box} from 'steffes-ui'
import 'steffes-ui/dist/index.css'

class Example extends Component {
  render() {
    return(
      <Box
        bg='black'
      >
        Content
      </Box>
    )
  }
}

Flex

Description

Uses the styled-system API to style a <div/> component.

Usage

import React, { Component } from 'react'

import {Flex} from 'steffes-ui'
import 'steffes-ui/dist/index.css'

class Example extends Component {
  render() {
    return(
      <Flex
        flexDirection="column"
        alignItems="center"
        justifyContent="center"
      >
        Content
      </Flex>
    )
  }
}

Inline

Description

Uses the styled-system API to style a <div/> component.

Usage

import React, { Component } from 'react'

import {Inline} from 'steffes-ui'
import 'steffes-ui/dist/index.css'

class Example extends Component {
  render() {
    return(
      <Inline
        bg='black'
      >
        Content
      </Inline>
    )
  }
}

MediaQueries

ThemeableButtons

ThemeableText

License

MIT © steffesgroup

FAQs

Package last updated on 11 May 2020

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