UNPKG

lost-sia

Version:

Single Image Annotation Tool

16 lines (13 loc) 273 B
import React from "react"; import { Popup } from "semantic-ui-react"; const SiaPopup = ({ content, trigger }) => { return ( <Popup inverted style={{ opacity: 0.9 }} content={content} trigger={trigger} /> ); }; export default SiaPopup;