UNPKG

@specialdoom/solid-rev-kit

Version:

RevKit UI implementation for SolidJS

18 lines (17 loc) 422 B
import { Component, JSXElement } from 'solid-js'; interface CardAction { label: string; onClick: () => void; icon?: JSXElement; } export interface FillCardProps { background?: string; color?: string; label?: string; title?: string; small?: boolean; actions?: CardAction[]; children: JSXElement; } export declare const FillCard: Component<FillCardProps>; export {};