Skip to content

Commit

Permalink
fix: add button intent (#21)
Browse files Browse the repository at this point in the history
Fixes the styling for the docs-hub
  • Loading branch information
sarahschwartz authored Aug 24, 2023
1 parent ae8e85c commit 4cbf648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/query.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function Query(props: QueryProps) {
<ExampleBox>
<Box.Flex direction="column" gap="$4">
<>
<Button variant="outlined" onPress={runQuery}>{loading ? <Spinner/> : "Run"}</Button>
<Button intent="base" variant="outlined" onPress={runQuery}>{loading ? <Spinner/> : "Run"}</Button>

{resp &&
<>
Expand Down

0 comments on commit 4cbf648

Please sign in to comment.