📄 radixui/themes/docs/components/callout

File: callout.md | Updated: 11/15/2025

Source: https://www.radix-ui.com/themes/docs/components/callout

Radix Homepage

Made by WorkOS

Radix Homepage

Made by WorkOS

ThemesThemes PrimitivesPrimitives IconsIcons ColorsColors

Documentation Playground Blog

Overview

Getting started Styling Layout Releases Resources

Theme

Overview Color Dark mode Typography Spacing Breakpoints Radius Shadows Cursors

Layout

Box Flex Grid Container Section

Typography

Text Heading Blockquote Code Em Kbd Link Quote Strong

Components

Alert Dialog Aspect Ratio Avatar Badge Button Callout Card Checkbox Checkbox Group Checkbox Cards Context Menu Data List Dialog Dropdown Menu Hover Card Icon Button Inset Popover Progress Radio Radio Group Radio Cards Scroll Area Segmented Control Select Separator Skeleton Slider Spinner Switch Table Tabs Tab Nav Text Area Text Field Tooltip

Utilities

Accessible Icon Portal Reset Slot Theme Visually Hidden

Components

Callout

Short message to attract user’s attention.

View source Report an issue View in Playground

You will need admin privileges to install and access this application.

<Callout.Root>
	<Callout.Icon>
		<InfoCircledIcon />
	</Callout.Icon>
	<Callout.Text>
		You will need admin privileges to install and access this application.
	</Callout.Text>
</Callout.Root>

API Reference


Root

Groups Icon and Text parts. This component is based on the div element and supports common margin props .

| Prop | Type | Default | | --- | --- | --- | | asChild<br><br>Prop description | boolean | No default value | | size | Responsive<"1" \| "2" \| "3"> | "2" | | variant<br><br>Prop description | "soft" \| "surface" \| "outline" | "soft" | | color<br><br>Prop description | enum<br><br>See full type | No default value | | highContrast<br><br>Prop description | boolean | No default value |

Icon

Provides width and height for the icon associated with the callout. This component is based on the div element.

Text

Renders the callout text. This component is based on the p element.

Examples


Size

Use the size prop to control the size.

You will need admin privileges to install and access this application.

You will need admin privileges to install and access this application.

You will need admin privileges to install and access this application.

<Flex direction="column" gap="3" align="start">
	<Callout.Root size="1">
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			You will need admin privileges to install and access this application.
		</Callout.Text>
	</Callout.Root>

	<Callout.Root size="2">
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			You will need admin privileges to install and access this application.
		</Callout.Text>
	</Callout.Root>

	<Callout.Root size="3">
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			You will need admin privileges to install and access this application.
		</Callout.Text>
	</Callout.Root>
</Flex>

Variant

Use the variant prop to control the visual style.

You will need admin privileges to install and access this application.

You will need admin privileges to install and access this application.

You will need admin privileges to install and access this application.

<Flex direction="column" gap="3">
	<Callout.Root variant="soft">
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			You will need <Link href="#">admin privileges</Link> to install and access
			this application.
		</Callout.Text>
	</Callout.Root>

	<Callout.Root variant="surface">
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			You will need <Link href="#">admin privileges</Link> to install and access
			this application.
		</Callout.Text>
	</Callout.Root>

	<Callout.Root variant="outline">
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			You will need <Link href="#">admin privileges</Link> to install and access
			this application.
		</Callout.Text>
	</Callout.Root>
</Flex>

Color

Use the color prop to assign a specific color .

You will need admin privileges to install and access this application.

You will need admin privileges to install and access this application.

You will need admin privileges to install and access this application.

<Flex direction="column" gap="3">
	<Callout.Root color="blue">
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			You will need <Link href="#">admin privileges</Link> to install and access
			this application.
		</Callout.Text>
	</Callout.Root>

	<Callout.Root color="green">
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			You will need <Link href="#">admin privileges</Link> to install and access
			this application.
		</Callout.Text>
	</Callout.Root>

	<Callout.Root color="red">
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			You will need <Link href="#">admin privileges</Link> to install and access
			this application.
		</Callout.Text>
	</Callout.Root>
</Flex>

High-contrast

Use the HighContrast prop to add additional contrast.

An update to Radix Themes is available. See what’s new in version 3.2.0.

An update to Radix Themes is available. See what’s new in version 3.2.0.

<Flex direction="column" gap="3">
	<Callout.Root color="gray" variant="soft">
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			An update to Radix Themes is available. See what’s new in version 3.2.0.
		</Callout.Text>
	</Callout.Root>

	<Callout.Root color="gray" variant="soft" highContrast>
		<Callout.Icon>
			<InfoCircledIcon />
		</Callout.Icon>
		<Callout.Text>
			An update to Radix Themes is available. See what’s new in version 3.2.0.
		</Callout.Text>
	</Callout.Root>
</Flex>

As alert

Add a native WAI-ARIA alert role to the callout when the user’s immediate attention is required, like when an error message appears. The screen reader will be interrupted, announcing the new content immediately.

Access denied. Please contact the network administrator to view this page.

<Callout.Root color="red" role="alert">
	<Callout.Icon>
		<ExclamationTriangleIcon />
	</Callout.Icon>
	<Callout.Text>
		Access denied. Please contact the network administrator to view this page.
	</Callout.Text>
</Callout.Root>

PreviousButton

NextCard

Edit this page on GitHub.