Reaching past the library for a primitive
Don't
import { Button } from "react-aria-components"
<Button onPress={save}>Save</Button>Do
import { Button } from "@/components/button"
<Button intent="primary" onPress={save}>
Save
</Button>Both render an accessible button. Only one of them is a quebi button, and no element check can tell them apart — which is why this rule reads imports rather than JSX.