UIkit css that implement Ocean's Design System.
Using yarn:
yarn add @useblu/ocean-core
or using npm:
npm i @useblu/ocean-core
import React from 'react';
import ReactDOM from 'react-dom';
import '@useblu/ocean-core/ocean.min.css';
function App() {
return (
<button class="ods-btn ods-btn--md ods-btn--primary">Hello World</button>
);
}
ReactDOM.render(<App />, document.querySelector('#app'));
Read the documentation to learn more.
Licensed under the GPL-3.0 license.