0.0.12 • Published 4 years ago

@arnat/styled-alert v0.0.12

Weekly downloads
11
License
MIT
Repository
github
Last release
4 years ago

ARNAT Styled Alert

npm Travis branch Codecov branch storybook lerna

Modular approach to use bootstrap components for quick prototypes, as an entrypoint of the component library.

Usage

// import { Alert } from 'styled-bootstrap-components';
import { Alert } from '@arnat/styled-alert';

const SuccessAlert = props => <Alert success>Well done!</Alert>;

Import components from @arnat/styled-bootstrap if you have it installed.

Properties

Properties which can be added to the component to change the visual appearance.

  • noRadius Type: boolean
  • pill Type: boolean
  • primary Type: boolean
  • secondary Type: boolean
  • success Type: boolean
  • danger Type: boolean
  • warning Type: boolean
  • info Type: boolean
  • light Type: boolean
  • dark Type: boolean