Tappable objects are links and buttons.
Them like to be together.
import {Button} from'@/core';// Use primitive<Button variant="ghost">No background/border button</Button>// Composed variantfunction ButtonAccent(props: ButtonProps) {const { isPortrait } = useBreakpoint();return <Button {...props} compose={styles.accent} stretch={!!isPortrait} />;}// Use variantimport {ButtonAccent} from'@/composed';<ButtonAccent onTap={()=>({})}> Noop </ButtonAccent>
Code snippet hidden
Your screen is too small.