UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

12 lines (10 loc) 340 B
import type { SvelteComponentTyped } from 'svelte' interface LabelProps {} /** * @description A statistic can contain a label to help provide context for the presented value * @example * <Statistic> * <Statistic.Label>text</Statistic.Label> * </Statistic> */ export default class Label extends SvelteComponentTyped<LabelProps> {}