Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heokhe/svmd
Material design components for Svelte
https://github.com/heokhe/svmd
material material-design svelte svelte-components sveltejs
Last synced: about 2 months ago
JSON representation
Material design components for Svelte
- Host: GitHub
- URL: https://github.com/heokhe/svmd
- Owner: heokhe
- License: gpl-3.0
- Archived: true
- Created: 2019-07-31T16:22:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-04T21:14:14.000Z (almost 5 years ago)
- Last Synced: 2024-05-23T07:50:23.390Z (8 months ago)
- Topics: material, material-design, svelte, svelte-components, sveltejs
- Language: HTML
- Homepage: https://svmd.surge.sh/
- Size: 539 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SVMD
SVMD is a set of **Material Design components** for **Svelte**. It wraps each of [Google's MDC Web vanilla Components](https://material.io/develop/web) using the simple approach. It is:
- ✨ Easy to use
- 📚 Well-documented
- 🎨 Highly customizable
- 🌳 Tree-shakeable# Installation
```sh
npm i svmd # npm
yarn add svmd # yarn
```# Usage
SVMD has a variety of components, and you can import them like this:
```js
import { Button, Slider, Fab } from 'svmd';
import 'svmd/dist/svmd.css';
```
> See [the docs about styles](docs/styles.md) for more info about the components' styles.# Documentation
See [the `docs` folder](./docs).