3.2.1 • Published 4 years ago

styled-css-framework-react v3.2.1

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

🔥 Access our website to see all components.

Access here!

📖 What is this ?

I built this react component library to improve my skills on npm and styled components. Feel free to use any of the components in your personal projects.

Installation

npm i styled-css-framework-react

Button

import React from 'react';
import Button from "styled-css-framework-react/core/Button";

const ButtonComponent = () => {
    return (
        <div>
        <Button pink>Hello World</Button>
        <Button brown>Hello World</Button>
        <Button>Hello World</Button>
        <Button blue>Hello World</Button>
        <Button red>Hello World</Button>
        <Button yellow>Hello World</Button>
        <Button gray>Hello World</Button>
        <Button purple>Hello World</Button>
        <Button black>Hello World</Button>
        <Button orange>Hello World</Button>
        <Button fluid purple>Hello World</Button>
        </div>
    )
}

export default ButtonComponent

Button Properties

  • pink
  • brown
  • blue
  • red
  • yellow
  • gray
  • purple
  • black
  • orange
  • fluid

Container

import React from 'react';
import Container from 'styled-css-framework-react/core/Container';

const ContainerComponent = () => {
    return (
        <div>
        <Container>
        <p>
        Lorem, ipsum dolor sit amet consectetur adipisicing elit. Illo repudiandae possimus qui quas. Non quasi aspernatur consequuntur praesentium veritatis nobis dolorem quis,         harum illum fuga nihil dicta voluptas magni quos.
        Lorem, ipsum dolor sit amet consectetur adipisicing elit. Illo repudiandae possimus qui quas. Non quasi aspernatur consequuntur praesentium veritatis nobis dolorem quis,         harum illum fuga nihil dicta voluptas magni quos.
        Lorem, ipsum dolor sit amet consectetur adipisicing elit. Illo repudiandae possimus qui quas. Non quasi aspernatur consequuntur praesentium veritatis nobis dolorem quis,         harum illum fuga nihil dicta voluptas magni quos.
        </p>
        </Container>
        </div>
    )
}

export default ContainerComponent;

Divider

import React from 'react';
import Divider from "styled-css-framework-react/core/Divider";

const DividerComponent = () => {
    return (
        <div>
        <Divider />
        <Divider dotted/>
        <Divider solid/>
        <Divider rounded/>
        </div>
    )
}

export default DividerComponent;

Divider Properties

  • dotted
  • solid
  • rounded

Image

import React from 'react';
import Image from "styled-css-framework-react/core/Images";

const ImageComponent = () => {
    return (
        <div>
         <Image src={'https://cdn.meutimao.com.br/_upload/noticia/2020/10/22/mantuan-marca-o-primeiro-gol-do-corinthians-na_j1941w.jpg'} />
         <Image rounded src={'https://cdn.meutimao.com.br/_upload/noticia/2020/10/22/mantuan-marca-o-primeiro-gol-do-corinthians-na_j1941w.jpg'} />
         <Image small src={'https://cdn.meutimao.com.br/_upload/noticia/2020/10/22/mantuan-marca-o-primeiro-gol-do-corinthians-na_j1941w.jpg'} />
         <Image medium src={'https://cdn.meutimao.com.br/_upload/noticia/2020/10/22/mantuan-marca-o-primeiro-gol-do-corinthians-na_j1941w.jpg'} />
         <Image big src={'https://cdn.meutimao.com.br/_upload/noticia/2020/10/22/mantuan-marca-o-primeiro-gol-do-corinthians-na_j1941w.jpg'} />
         <Image large src={'https://cdn.meutimao.com.br/_upload/noticia/2020/10/22/mantuan-marca-o-primeiro-gol-do-corinthians-na_j1941w.jpg'} />
         </div>
    )
}

export default ImageComponent

Image Properties

  • rounded
  • small
  • medium
  • big
  • large

Input

import React from 'react';
import Input from "styled-css-framework-react/core/Input";

const InputComponent = () => {
    return (
         <div>
           <Input small placeholder="SMALL INPUT"/>
           <Input medium placeholder="MEDIUM INPUT"/>
           <Input big placeholder="BIG INPUT"/>
           <Input large placeholder="LARGE INPUT" />
           <Input fluid placeholder="FLUID INPUT" />
          </div>
    )
}

export default InputComponent;

Input Properties

  • small
  • medium
  • big
  • large
  • fluid

Alert

import React from 'react';
import Alert from "styled-css-framework-react/core/Alerts";

const AlertComponent = () => {
    return (
        <div>
        <Alert>Standard ! This is a standard alert.</Alert>
        <Alert danger>Danger! Indicates a dangerous or potentially negative action.</Alert>
        <Alert success>Success! Indicates a successful or positive action.</Alert>
        <Alert info>Info! Indicates a neutral informative change or action.</Alert>
        <Alert warning>Warning! Indicates a warning that might need attention.</Alert>
        </div>
    )
}

export default AlertComponent;

Alert Properties

  • danger
  • success
  • info
  • warning

Loader

import React from 'react';
import Loader from "styled-css-framework-react/core/Loader";

const SpinnerComponent = () => {
    return (
        <div>
        <Loader />
        <Loader blue />
        <Loader yellow />
        <Loader green />
        </div>
    )
}

export default SpinnerComponent;

Loader Properties

  • blue
  • yellow
  • green

Form

import React from 'react';
import Form from "styled-css-framework-react/core/Form";
import Input from "styled-css-framework-react/core/Input";
import Label from 'styled-css-framework-react/core/Label';
import FormField from 'styled-css-framework-react/core/FormField';
import Button from 'styled-css-framework-react/core/Button';

const FormComponent = () => {
    return (
        <div>
         <Form>
         <FormField>
           <Label>First Name</Label>
           <Input fluid placeholder="BIG INPUT"/>
         </FormField>
         <FormField>
           <Label>Last Name</Label>
           <Input fluid placeholder="BIG INPUT"/>
         </FormField>
         <FormField>
           <Label>Password</Label>
           <Input fluid placeholder="BIG INPUT"/>
         </FormField>
         <Button gray fluid>Submit</Button>
         </Form>
        </div>
    )
}

export default FormComponent;

Card

import React from 'react';
import Card from "styled-css-framework-react/core/Card";

const CardComponent = () => {
    return (
        <div>
        <Card>Standard Card</Card>
        <Card gray>Gray Card</Card>
        </div>
    )
}

export default CardComponent

Card Properties

  • gray

⛏️ Built with

✍️ Author

3.2.1

4 years ago

3.5.1

4 years ago

3.5.0

4 years ago

3.4.0

4 years ago

3.3.0

4 years ago

3.2.0

4 years ago

3.1.0

4 years ago

3.0.0

4 years ago

2.14.0

4 years ago

2.13.0

4 years ago

2.12.0

4 years ago

2.11.0

4 years ago

2.10.0

4 years ago

2.7.0

4 years ago

2.9.0

4 years ago

2.8.0

4 years ago

2.6.0

4 years ago

2.5.0

4 years ago

2.4.0

4 years ago

2.3.0

4 years ago

2.2.0

4 years ago

2.1.0

4 years ago

2.0.0

4 years ago

1.0.0

4 years ago