@fluid-topics/ft-card
v1.1.82
Published
A file uploader with drag and drop
Downloads
1,935
Readme
A card component.
Install
npm install @fluid-topics/ft-card
yarn add @fluid-topics/ft-card
Usage
import { html } from "lit"
import "@fluid-topics/ft-card"
import "@fluid-topics/ft-button"
function render() {
return html`
<ft-card title="Title">
<ft-button slot="action" dense round icon="close"></ft-button>
<div>Content</div>
</ft-card>
`
}