---
name: Snackbar
menu: Molecules
route: /molecules/Snackbar
---

import Snackbar from './Snackbar';
import { Playground, Props } from 'docz';

# Snackbar

This component renders an HTML `<input>` and passes along all props.

## API
<Props of={Snackbar} />

## Snackbar
#Success
<Playground>
  <Snackbar text="Sesión guardada exitosamente" success open />
</Playground>

#Failed
<Playground>
  <Snackbar text="Error al intentar guardar sesión" success={false} open />
</Playground>
