-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
897bd16
commit 32157c3
Showing
13 changed files
with
250 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Button } from "@salt-ds/core"; | ||
import type { ReactElement } from "react"; | ||
|
||
export const Appearance = (): ReactElement => ( | ||
<> | ||
<Button appearance="solid">Solid</Button> | ||
<Button appearance="outline">Outline</Button> | ||
<Button appearance="transparent">Transparent</Button> | ||
</> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { Button, GridLayout } from "@salt-ds/core"; | ||
import type { ReactElement } from "react"; | ||
|
||
export const Color = (): ReactElement => ( | ||
<GridLayout columns={3}> | ||
<Button appearance="solid" color="neutral"> | ||
Solid | ||
</Button> | ||
<Button appearance="outline" color="neutral"> | ||
Outline | ||
</Button> | ||
<Button appearance="transparent" color="neutral"> | ||
Transparent | ||
</Button> | ||
<Button appearance="solid" color="accent"> | ||
Solid | ||
</Button> | ||
<Button appearance="outline" color="accent"> | ||
Outline | ||
</Button> | ||
<Button appearance="transparent" color="accent"> | ||
Transparent | ||
</Button> | ||
</GridLayout> | ||
); |
Oops, something went wrong.