Info
Small informative component.
View SourceUsage
css
@import "winduum/src/components/info/index.css" layer(components);
Variants
Props
Installation
Follow instructions for individual framework usage below
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>
)
}