8 lines
238 B
TypeScript
8 lines
238 B
TypeScript
|
const DrawerCloseButton = () => {
|
||
|
// The Drawer component will use a portal to render the close button inside
|
||
|
// this div.
|
||
|
return <div className="wc-block-components-drawer__close-wrapper"></div>;
|
||
|
};
|
||
|
|
||
|
export default DrawerCloseButton;
|