Skip to content

WtHint

Props

PropTypeDefaultCodeDescription
iconColorString'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

NameScopeDescription
defaultDefault content slot

Example Hint

Code
vue
<script setup></script>

<template>
  <wt-hint> lorem ipsum </wt-hint>
</template>

<style scoped lang="scss"></style>