You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
493 B
TypeScript
17 lines
493 B
TypeScript
import { SnackbarTypeMap } from './Snackbar.types';
|
|
import { PolymorphicComponent } from '../utils';
|
|
/**
|
|
*
|
|
* Demos:
|
|
*
|
|
* - [Snackbar](https://mui.com/base-ui/react-snackbar/)
|
|
* - [Snackbar](https://mui.com/joy-ui/react-snackbar/)
|
|
* - [Snackbar](https://mui.com/material-ui/react-snackbar/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [Snackbar API](https://mui.com/base-ui/react-snackbar/components-api/#snackbar)
|
|
*/
|
|
declare const Snackbar: PolymorphicComponent<SnackbarTypeMap<{}, "div">>;
|
|
export { Snackbar };
|