import React from 'react' import { useScreens, SPACING_8 } from '@toptal/picasso-utils' import type { ButtonVariantType } from '@toptal/picasso' import { Typography, Button, Container } from '@toptal/picasso' const Example = () => { const screens = useScreens() const screenTexts = useScreens() return ( <> Current screen breakpoint:{' '} {screenTexts({ xs: 'xs', sm: 'sm', md: 'md', lg: 'lg', xl: 'xl', })} The button below will use:
  • secondary variant on small screens
  • positive variant on large screens
  • primary for all other screens (the default value)
) } export default Example