@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
10 lines (9 loc) • 365 B
TypeScript
import React from 'react';
import { SideMenuProps } from './types';
/**
* A side menu displays a list of choices on a temporary surface. It appears when the user interacts with a floating button, positioned by default on the right side of your screen.
*
* Inherits Icon Button props.
*/
declare const SideMenu: React.FC<SideMenuProps>;
export default SideMenu;