import React, { MouseEventHandler } from 'react'; import { IconButton, Tooltip } from '../../..'; export const SeekControl = ({ title, onClick, children, css, }: { title: string; onClick?: MouseEventHandler; css?: any; children: React.ReactNode; }) => { return ( {children} ); };