import { Props } from "./Props"; export const PopoverArrow = ( props: { arrowFill: string; arrowStroke: string } & Props, ) => { let { arrowFill, arrowStroke, ...passDownProps } = props; return ( ); };