@serendie/ui 0.1.7 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Serendie UI
2
2
 
3
3
 
4
+ [![GitHub](https://img.shields.io/github/license/serendie/serendie?style=flat)](https://github.com/serendie/serendie/blob/main/LICENSE)
5
+ [![NPM Version](https://img.shields.io/npm/v/%40serendie%2Fui)](https://www.npmjs.com/package/@serendie/ui)
4
6
  [![Storybook](https://cdn.jsdelivr.net/gh/storybookjs/brand@main/badge/badge-storybook.svg)](https://storybook.serendie.design/)
5
7
 
6
8
  [Serendie UI Kit (Figma)](https://www.figma.com/community/file/1433690846108785966)と対となるReactベースのUIコンポーネント集です。Figma Code Connectにも対応しており、Storybookと同等の内容が[Figma Devモードでも確認](https://serendie.design/get-started/dev/#section-1)できます。
@@ -6,9 +6,10 @@ export type MenuItemProps = {
6
6
  icon?: React.ReactElement;
7
7
  };
8
8
  export type DropdownMenuProps = {
9
- isIconMenu?: boolean;
9
+ styleType?: "default" | "iconButton";
10
10
  title: string;
11
11
  items: MenuItemProps[];
12
12
  disabled?: boolean;
13
+ icon?: React.ReactElement;
13
14
  };
14
15
  export declare const DropdownMenu: React.FC<DropdownMenuProps & MenuRootProps>;