symphony-ui
v1.0.16
Published
<h3 align="center"> Symphony Ui </h3>
Downloads
441
Readme
Documentation
For full documentation, visit storyBook.
Installing the latest version
You can install the latest version by using:
npm i symphony-ui
oryarn add symphony-ui
config
- in tailwind.config.ts:
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"primary-color": "#0CBC84",
"secondary-color": "#253343",
"placeholder-color": "#92A7C1",
"input-color": "#F5F7FA",
},
},
},
plugins: [],
};
- in App.ts:
import "symphony-ui/Themes/index.scss";
use
import { Button } from "symphony-ui";
const MyComonent = () => {
return;
<>
<Button />
<Button theme={"Custom"} />
</>;
};
Packages
| Name | Version | Downloads |
| :---------------------- | :-------: | :-------: |
| symphony-ui/react
| 1.0.7 | 200 |
Community
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
Contributing
If you're interested in contributing to Symphony Ui, please read our contributing docs before submitting a pull request.