0.9.4 • Published 3 years ago

bootstrap-wd-styles v0.9.4

Weekly downloads
15
License
ISC
Repository
github
Last release
3 years ago

Simple framework created in SCSS and typescript that is compliant with react

To stylize our website more quickly, as it is compliant with all types of projects as it is not only for react projects, but can also be adapted to a basic project.

 

Install

 npm i bootstrap-wd-styles

 

Element

 

Button


import { Button } from "bootstrap-wd-styles/components";

function Home() {
   return (
      <Button bg={`green`} size={`x`} type="button">
         Click
      </Button>
   );
}

 

Badge


import { Badge } from "bootstrap-wd-styles/components";

function Home() {
   return (
      <Badge bg={`green`} size={`m`}>
         Click
      </Badge>
   );
}

 

Alert


import { Alert } from "bootstrap-wd-styles/components";

function Home() {
   return <Alert isShown={true} content="lorem iipsum alert" bg="green" />;
}