Skip to content
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