Back to Docz

Alert

examples/wrapped-playground/src/components/Alert.mdx

2.4.0452 B
Original Source

import { Props } from 'docz' import Playground from '../Playground' 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>