import React from 'react' import { TolltipStyle } from './Tolltip.style' import { TolltipProps } from './Tolltip.types' export const Tolltip: React.FC = ({ children, title, style, placement = 'top', }) => { return ( {title} {children} ) }