dcx-react-library
is a React library with a set of components ready to use in your project.
There are plenty of libraries available in React that can help to increase your productivity however most of them contain lots of css and are hard to style based on your project's requirements.
dcx-react-library is UI/UX agnostic, this allows the dcx-react-library to be easily integrated into any project.
You have few options to make your components good looking :lipstick::
To see the full list of components built in dcx-react-library, and how to use it, have a look on our storybook-showcase In Storybook, each component is presented with 4 main sections:
Using dcx-react-library should not require any particular setup.
You only need to import the component and use it :smiley:
Steps:
yarn add @capgeminiuk/dcx-react-library
import { Button } from '@capgeminiuk/dcx-react-library';
const App = () => {
return <Button label="start" onClick={() => {}} />;
};
We don't ship dcx-react-library
with any included CSS. However, some stylesheet is required to use some components (for example, toggle
and tooltip
).
/* The following line can be included in your src/index.js or App.js file */
import '@capgeminiuk/dcx-react-library/dist/dcx-react-library.css';
The dcx-react-library
supports opt-in styling customizable via CSS custom properties.
To keep the library UI/UX agnostic the styles are not shipped by default. In order to include them in your project you can import them as follows:
/* main.jsx */
import '@capgeminiuk/dcx-react-library/design-system/index.css';
Note that this will setup the styling for all the components in the library. You may want to fine-tune the imports if performance is critical for your application.
All the components have their own stylesheet and can be imported individually when needed:
/* Needed for core styles */
import '@capgeminiuk/dcx-react-library/design-system/base.css';
/* Individual imports, works well with tree-shaking */
import '@capgeminiuk/dcx-react-library/design-system/form-control.css';
import '@capgeminiuk/dcx-react-library/design-system/button.css';
// ...
Don't forget to add the base.css
import before loading the individual stylesheets. It contains the core definitions used for the design system to work.
If you'd like to contribute, please follow our CONTRIBUTING section.
If you find a bug or you would like to recommend an improvement, please raise an issue and use the appropriate template. We will be more than happy to improve the library, smashing all the bugs found and improve the functionality.
Thanks goes to these wonderful people