Back to Docz

Alert

examples/flow/src/components/Alert.mdx

2.4.0427 B
Original Source

import { Playground, Props } from "docz"; import { Alert } from "./Alert";

Alert

Properties

<Props of={Alert} />

Basic usage

<Playground> <Alert>Some message</Alert> </Playground>

Using different kinds

<Playground> <Alert kind="info">Some message</Alert> <Alert kind="positive">Some message</Alert> <Alert kind="negative">Some message</Alert> <Alert kind="warning">Some message</Alert> </Playground>