refactor: use radix ui on workspace avatar (#1819)

This commit is contained in:
Himself65
2023-04-04 16:14:51 -05:00
committed by GitHub
parent a24b747ee8
commit ae4339ea28
6 changed files with 191 additions and 65 deletions
@@ -77,3 +77,11 @@ export const BlobExample: StoryFn<WorkspaceAvatarProps> = props => {
BlobExample.args = {
size: 40,
};
export const Empty: StoryFn<WorkspaceAvatarProps> = props => {
return <WorkspaceAvatar {...props} workspace={null} />;
};
Empty.args = {
size: 40,
};