We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f1358f commit 262a4efCopy full SHA for 262a4ef
src/components/core/Button/Button.md
@@ -10,8 +10,15 @@ Disabled buttons:
10
<Button disabled>Can’t touch this</Button> <Button variant="primary" disabled>Can’t touch this</Button>
11
```
12
13
+
14
Full width button:
15
-```jsx
16
-<Button fullWidth>Looooong cat button</Button>
+```js
17
+<Button fullWidth>Click me</Button> <Button variant="primary" fullWidth>Click me</Button>
18
+```
19
20
+Button as a link:
21
22
23
+<Button as="a" href="/">Click me</Button> <Button as="a" href="/" variant="primary">Click me</Button>
24
0 commit comments