bootstrap-wd-styles
v0.9.4
Published
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
Downloads
13
Readme
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" />;
}