10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
import React, { DetailedHTMLProps, HTMLAttributes } from "react";
|
|
import Modal, { TWUI_MODAL_PROPS } from "./Modal";
|
|
|
|
/**
|
|
* # Popover Component
|
|
*/
|
|
export default function Popover(props: TWUI_MODAL_PROPS) {
|
|
return <Modal {...props} isPopover />;
|
|
}
|