github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/web/src/Tooltip.stories.tsx (about) 1 import React from "react" 2 import Tooltip from "./Tooltip" 3 4 export default { 5 title: "New UI/_To Review/Tooltip", 6 } 7 8 export const Default = () => ( 9 <div 10 style={{ 11 display: "flex", 12 width: "500px", 13 height: "500px", 14 alignItems: "center", 15 justifyContent: "center", 16 }} 17 > 18 <Tooltip title="icon explanation" open={true}> 19 <span>Hello world</span> 20 </Tooltip> 21 </div> 22 )