Info
Small informative component.
View SourceInstallation
Follow instructions for individual framework usage below
Styles
Variants
Props
Examples
Basic
html
<em class="x-info">Info text</em>vue
<script setup lang="ts">
import { Info } from '@/components/info'
</script>
<template>
<Info>Info text</Info>
</template>jsx
import { Info } from '@/components/info'
export function Example() {
return (
<Info>Info text</Info>
)
}