@gojek/theme-asphalt-web-draco
v0.1.1
Published
Asphalt Web Draco theme
Downloads
94
Readme
Asphalt Web Draco theme
Asphalt Web Draco theme
Installation
// npm
$ npm install @gojek/theme-asphalt-web-draco
// yarn
$ yarn add @gojek/theme-asphalt-web-draco
Basic usage with <ThemeProvider>
import ThemeProvider from "@asphalt-react/theme-provider";
import { draco } from "@gojek/theme-asphalt-web-draco";
import { Button } from "@asphalt-react/button";
export const App = () => {
return (
<ThemeProvider theme={draco}>
<h2>Themed App</h2>
<Button>Hello</Button>
</ThemeProvider>
);
};