cms-styles
v1.0.6
Published
A styles library for CMS creators
Downloads
1
Maintainers
Readme
cms-styles
A highly customizable styles library of React Components to quickly build the perfect CMS, Dashboard, Admin Panel
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