@ultraviolet/plus
Version:
Ultraviolet Plus
45 lines (31 loc) ⢠1.18 kB
Markdown
[](https://badge.fury.io/js/%40ultraviolet%2Fplus)
We are going to make breaking changes regularly until the first version is released.
Ultraviolet Plus is a set of complex components that are built on top of Ultraviolet UI.
```sh
$ pnpm add @ultraviolet/plus
```
In order for the library to work you will need to import both Ultraviolet UI and Ultraviolet Plus styles in your project as well as Ultraviolet Theme.
```tsx
import { ThemeProvider } from '@ultraviolet/themes'
import { normalize, theme } from '@ultraviolet/ui'
import { ContentCard } from '@ultraviolet/plus'
import '@ultraviolet/ui/styles'
import '@ultraviolet/plus/styles'
const App = () => (
<ThemeProvider theme={theme}>
<Global
styles={css`
${normalize()}
`}
/>
<ContentCard title="Welcome on Ultraviolet Plus" />
</ThemeProvider>
)
```
Checkout our [documentation website](https://storybook.ultraviolet.scaleway.com/).
š You can participate in the development and [start contributing](/CONTRIBUTING.md) to it.