Back to Docz

Alert

examples/with-custom-docz-theme/src/components/Alert.mdx

2.4.0425 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>