untitled

Profile

Alert Component Demo

Welcome

To

The

Holokit

Library

Stay as long as you like...
Depending on your theme, you may need to provide overrides for font color
<Theme grow theme={$theme}>
  <Alert type="neutral">Hello</Alert>
</Theme>
<Theme grow theme={$theme}>
  <Alert>Hello</Alert>
</Theme>
<Theme grow theme={$theme} override={{ color: '#333' }}>
  <Alert type="info">World</Alert>
</Theme>
<Theme grow theme={$theme}>
  <Alert type="warning">World</Alert>
</Theme>
<Theme grow theme={$theme}>
  <Alert type="danger">World</Alert>
</Theme>