import React, { useState } from 'react' import { Button, Container, Grid, Typography, Popper } from '@toptal/picasso' import { SPACING_4 } from '@toptal/picasso-utils' type Placement = | 'top-start' | 'top' | 'top-end' | 'bottom-start' | 'bottom' | 'bottom-end' | 'left-start' | 'left' | 'left-end' | 'right-start' | 'right' | 'right-end' const PlacementDemo = ({ placement }: { placement: Placement }) => { const [anchorEl, setAnchorEl] = useState(null) return ( <> {anchorEl && ( Content )} ) } const Example = () => ( ) export default Example