UNPKG

baked-recipe-admin

Version:

Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.

15 lines (9 loc) 353 B
import type { DefineComponent, EmitFn } from '@primevue/core'; export interface IconProps { label?: string | undefined; spin?: boolean; } export interface IconSlots {} export interface IconEmitsOptions {} export declare type IconEmits = EmitFn<IconEmitsOptions>; export declare const Icon: DefineComponent<IconProps, IconSlots, IconEmits>;