Если вам не нужно использовать css, вы можете использовать стилизованные компоненты и написать там css.
const MyCursorPointer = styled.div`
cursor: pointer;
* { /* this would be for elements that override the cursor pointer but are children of this component */
cursor: pointer;
/* cursor: pointer !important; */
/* ^ Use this style if you still see a cursor other than type pointer on the children */
}
`
Если вы хотите сделать inline, вы можете сделать это
<div style={{cursor: 'pointer'}}>
но элементы заметки, которые имеют предопределенный стиль cursor
, могут переопределить это. styled-components
решение должно применять указатель, если вы этого хотите.