import React from 'react'
import { useBreakpoint } from '@toptal/picasso-utils'
import { Typography } from '@toptal/picasso'
const Example = () => {
const isSmall = useBreakpoint('sm')
const isSmallOrMedium = useBreakpoint(['sm', 'md'])
return (
<>
{`Breakpoint 'small' matches: ${isSmall}`}
{`Breakpoint 'small' or 'medium' matches: ${isSmallOrMedium}`}
>
)
}
export default Example