UNPKG

@specialdoom/solid-rev-kit

Version:

RevKit UI implementation for SolidJS

9 lines (8 loc) 241 B
import { Component, JSXElement } from 'solid-js'; export interface CalloutProps { title?: string; description: string; actions?: JSXElement[]; small?: boolean; } export declare const Callout: Component<CalloutProps>;