Skip to content

Commit

Permalink
Merge bf97017 into ea9e969
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh authored Dec 5, 2024
2 parents ea9e969 + bf97017 commit 07ba36c
Show file tree
Hide file tree
Showing 11 changed files with 157 additions and 131 deletions.
186 changes: 75 additions & 111 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"prettier": {
"plugins": [
"prettier-plugin-packagejson",
"prettier-plugin-tailwindcss",
"prettier-plugin-organize-imports"
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss"
],
"semi": true,
"singleQuote": true,
Expand Down Expand Up @@ -112,16 +112,16 @@
"msw": "^2.6.0",
"msw-storybook-addon": "^2.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-tailwindcss": "^0.6.9",
"read-pkg": "^9.0.1",
"release-please": "^16.14.3",
"storybook": "8.2.9",
"tailwindcss": "^3.4.14",
"tailwindcss-react-aria-components": "^1.1.6",
"tailwindcss": "^3.4.16",
"tailwindcss-react-aria-components": "^1.2.0",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.4"
Expand Down
8 changes: 8 additions & 0 deletions packages/utah-design-system/src/components/Button.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { Meta } from '@storybook/react';
import { BotIcon } from 'lucide-react';
import { Button as Component } from './Button';

const meta: Meta<typeof Component> = {
Expand Down Expand Up @@ -48,3 +49,10 @@ export const Destructive = {
variant: 'destructive',
},
};

export const Icon = {
args: {
variant: 'icon',
children: <BotIcon />,
},
};
Loading

0 comments on commit 07ba36c

Please sign in to comment.