Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#190 adding examples for cursor options #228

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions components/doc/cursor/examples.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ export function ExamplesDoc(props) {
<div class="cursor-pointer flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">pointer</div>
<div class="cursor-wait flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">wait</div>
<div class="cursor-move flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">move</div>
<div className="cursor-help flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">help</div>
<div className="cursor-zoom-out flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">zoom out</div>
<div className="cursor-not-allowed flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">not allowed</div>

</div>
`;

Expand All @@ -19,6 +23,9 @@ export function ExamplesDoc(props) {
<div className="cursor-pointer flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">pointer</div>
<div className="cursor-wait flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">wait</div>
<div className="cursor-move flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">move</div>
<div className="cursor-help flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">help</div>
<div className="cursor-zoom-out flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">zoom out</div>
<div className="cursor-not-allowed flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">not allowed</div>
</div>
</div>
<DocSectionCode code={code} />
Expand Down