UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

18 lines (14 loc) 242 B
import { VNode } from 'vue'; interface TagProps { value?: any; severity?: string; rounded?: boolean; icon?: string; } declare class Tag { $props: TagProps; $slots: { '': VNode[]; } } export default Tag;