WtHint
Props
| Prop | Type | Default | Code | Description |
|---|---|---|---|---|
| iconColor | String | 'info' | <wt-hint :iconColor="'info'"></wt-hint> | Prop for hint icon color. iconColor prop value can be the same as the color props values in the wt-icon component |
Slots
| Name | Scope | Description |
|---|---|---|
| default | Default content slot |
Example Hint
Code
vue
<script setup></script>
<template>
<wt-hint> lorem ipsum </wt-hint>
</template>
<style scoped lang="scss"></style>