First, you need to import a component to your code (сheck component path is right):
import Callout from "../../core/Callout";
To use the component, copy and paste an example from the CODE tab.
Default props of component can be omitted, they are applied automatically. For example, you can skip the prop type='def', because 'def' is the default value of prop 'type'.
dense
view
color
className
title
icon
< Callout type = 'def' view = 'smooth' color = 'primary' title = 'Visually important content' icon = {< Icon icon='info-sign' iconSize={24} />} > The component is a simple wrapper around the CSS API that provides props for modifiers and optional title element. Any additional HTML props will be spread to the rendered < Code > {" < div >"} < /Code> element. < / Callout >