Last modified: 16/Oct/2025
InfoBox
Use the InfoBox component to display short, textual information with a descriptive label.
#Usage
import { InfoBox } from '@kinsta/stratus'
const MyComponent = () => (
<InfoBox label="Type of the Millennium Falcon">
YT-1300 Corellian light freighter
</InfoBox>
)
#Props
#label
string | ReactElement<any, string | JSXElementConstructor<any>>
Defaults to The label of the component
#children
ReactNode
The content of the component
#isLoading
boolean
#Types
InfoBoxProps: props of theInfoBoxcomponent processed by stratusInfoBoxInterface:InfoBoxPropsextended by`HTMLAttributes<HTMLDivElement>`
Read more about types here