# Usage

To utilize Kongponent styles, add the package into your project as a dependency

yarn add @kongponents/styles

Next, add the following to your Vue app entry file (e.g. main.js)

import '@kongponents/styles/styles.css'

Alternatively, you can import styles into your SCSS

@import "~@kongponents/styles/styles.css";

The tilde (~) in the path indicates to webpack that the file should be imported from the node_modules directory.