APIToGoAPIToGo
Visit APIToGo on LinkedIn
  • Documentation
  • Components
  • Themes
General
    AlertCalloutBadgeCardIconsMarkdownTypography
Documentation
Form
Utility
powered by apitogo
General

Callout

This is a callout component that can be used to draw attention to important information.

Import

Code
import { Callout } from "@lukoweb/apitogo/ui/Callout";

Hot tip

There's a shortcut to use callout components in Markdown files: Admonitions.

Note

Hey, listen!

This draws attention to important information.

Code
<Callout type="note" title="Hey, listen!"> This draws attention to important information. </Callout>

Info

It's safe to use the info

This adds info to your content.

Code
<Callout type="info" title="It's safe to use the info"> This adds info to your content. </Callout>

Tip

You'll be successful

If you choose to be.

Code
<Callout type="tip" title="You'll be successful"> If you choose to be. </Callout>

Danger

But some things are dangerous

It's dangerous to go alone, take this.

Code
<Callout type="danger" title="But some things are dangerous"> It's dangerous to go alone, take this. </Callout>

Caution

So, better show a warning

This raises a warning to watch out for.

Code
<Callout type="caution" title="So, better show a warning"> This raises a warning to watch out for. </Callout>

Variations

Callouts can be customized by omitting the title or icon:

Without a title

Without an icon

You can hide the icon while keeping the title

Or have neither title nor icon

Code
<Callout type="note"> Without a title </Callout> <Callout type="note" icon={false} title="Without an icon"> You can hide the icon while keeping the title </Callout> <Callout type="note" icon={false}> Or have neither title nor icon </Callout>
Last modified on March 27, 2026
AlertBadge
On this page
  • Import
  • Note
  • Info
  • Tip
  • Danger
  • Caution
  • Variations
React
React
React
React
React
React
React