UNPKG

mdc-react

Version:

Material Components for the web implemented in React

16 lines (12 loc) 362 B
import { forwardRef } from 'react'; import { cssClasses } from './constants'; const DrawerContent = forwardRef(({ element: Element = 'div', ...props }, ref) => { return ( <Element ref={ref} className={cssClasses.CONTENT} {...props} /> ); }); DrawerContent.displayName = 'MDCDrawerContent'; export default DrawerContent;