The CSS implementation of the Pycord UI
Pycord UI is made to centralize the codebase for Pycord's UI for the web and make all of Pycord's web interfaces consistent.
# NPM
$ npm install @pycord/pycui sass
# Yarn
$ yarn add @pycord/pycui sass
@use 'node_modules/@pycord/pycui';
@include pycui.init() {
// Components go here...
}
When instantiating components:
@use 'node_modules/@pycord/pycui';
@use 'node_modules/@pycord/pycui/pyc-button';
@include pycui.init() {
@include pyc-button.render();
...
}