1.0.6 • Published 1 year ago

cms-styles v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

cms-styles

A highly customizable styles library of React Components to quickly build the perfect CMS, Dashboard, Admin Panel

NPM JavaScript Style Guide

Install

npm install --save cms-styles

About the project

The goal here is to allow you, developers, to put together imported React components to build your own CMS. Almost every component is customizable and easy to use. The dafault designs are also provided to save you some time.

Usage

First import the styles in App.tsx, this way they will be accessible from all pages and components

import 'cms-styles/dist/index.css'

Then in any page you want to build just import the components and put them together like Lego blocks

import React from 'react'
import { Box, Text, Button } from 'cms-styles'

const CmsPage = () => {
    return (
      <Box m={16}>
        <Text pl={32}>Text</Text>
        <Button onClick={() => { }}>Button</Button>
      </Box>
    )
}

export default CmsPage

License

MIT © elchuzade

All Components

  • Box
  • Flex
  • FlexBox
  • Button
  • Text
  • Title
  • Form
  • TextInput
  • TextareaInput
  • SelectInput
  • Card
  • Image
  • Accordion
  • Modal
  • SideBar
1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago