import React from 'react' import { cn } from '../../../utils' import { typographyVariants } from '../../Typography' import { ExpandedFooterContext } from '../context' import { ArrowDown, ArrowUp } from '../icons' export function MainFooterExpanders() { const { expanded, toggle } = React.useContext(ExpandedFooterContext) return ( <> All {expanded ? : } ) }