Skip to content

Commit

Permalink
Merge branch 'main' into release/v11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m4manjesh committed Jan 29, 2025
2 parents 21e87bd + e8513a5 commit 399c196
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/TransferList/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { default } from "./TransferList";
export type { TransferListProps } from "./TransferList.types";
export type { TransferListProps, TransferListItem } from "./TransferList.types";
2 changes: 1 addition & 1 deletion src/UserLabel/UserLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function UserLabel({ label, color }: UserLabelProps) {
icon: (
<div>
<UserAvatar
sx={{ height: "24px", width: "24px" }}
sx={{ fontSize: "10px", height: "24px", width: "24px" }}
color={color}
name={label}
/>
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@ export {
} from "./ToggleColorMode";
export {
default as TransferList,
type TransferListProps
type TransferListProps,
type TransferListItem
} from "./TransferList";
export {
default as TreeViewList,
Expand Down

0 comments on commit 399c196

Please sign in to comment.