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