@responsive-ui/card
Advanced tools
Comparing version 0.3.4 to 0.3.5
{ | ||
"name": "@responsive-ui/card", | ||
"version": "0.3.4", | ||
"description": "Card component", | ||
"version": "0.3.5", | ||
"description": "A card component of responsive-ui.", | ||
"author": "Si3nLoong <sianloong90@gmail.com>", | ||
@@ -38,3 +38,3 @@ "homepage": "https://github.com/wetix/responsive-ui#readme", | ||
}, | ||
"gitHead": "2f5b2b033aa62ed12e63f61ae6748f6fc4c96640" | ||
"gitHead": "9c550f03d2ce234d99ebcf9ea942c09ffbc805a2" | ||
} |
@@ -1,11 +0,55 @@ | ||
# `card` | ||
# @responsive-ui/card | ||
> TODO: description | ||
> A card component of responsive-ui. | ||
## Install | ||
```console | ||
npm install @responsive-ui/card | ||
``` | ||
or | ||
```console | ||
yarn add @responsive-ui/card | ||
``` | ||
<br/> | ||
## Properties | ||
```ts | ||
type CardProps = { | ||
compact?: boolean; | ||
class?: string; | ||
}; | ||
``` | ||
<br/> | ||
## Usage | ||
```svelte | ||
<script> | ||
import Card from '@responsive-ui/card'; | ||
</script> | ||
<Card> | ||
Card content here... | ||
</Card> | ||
``` | ||
const card = require('card'); | ||
// TODO: DEMONSTRATE API | ||
``` | ||
## Sponsors | ||
<img src="https://asset.wetix.my/images/logo/wetix.png" alt="WeTix" width="240px"> | ||
## License | ||
[@responsive-ui/card](https://github.com/wetix/responsive-ui/tree/master/components/card) is 100% free and open-source, under the [MIT license](https://github.com/wetix/responsive-ui/blob/master/LICENSE). | ||
## Big Thanks To | ||
Thanks to these awesome companies for their support of Open Source developers ❤ | ||
[![GitHub](https://jstools.dev/img/badges/github.svg)](https://github.com/open-source) | ||
[![NPM](https://jstools.dev/img/badges/npm.svg)](https://www.npmjs.com/) |
import type { SvelteComponentTyped } from "svelte/internal"; | ||
export interface CardProps {} | ||
export interface CardProps { | ||
compact?: boolean; | ||
class?: string; | ||
} | ||
@@ -5,0 +8,0 @@ export interface CardEvents { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39108
1131
56