@availity/mui-avatar 0.1.0 → 0.1.1
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/CHANGELOG.md +2 -0
- package/dist/index.d.ts +0 -2
- package/package.json +1 -1
- package/src/lib/Avatar.tsx +0 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { AvatarProps as AvatarProps$1 } from '@mui/material';
|
|
2
|
-
import React from 'react';
|
|
3
2
|
|
|
4
3
|
interface AvatarProps extends Omit<AvatarProps$1, 'variant'> {
|
|
5
|
-
children: React.ReactNode;
|
|
6
4
|
/** The size of the component.
|
|
7
5
|
* @default xl */
|
|
8
6
|
size?: 'xs' | 's' | 'm' | 'l' | 'xl';
|
package/package.json
CHANGED
package/src/lib/Avatar.tsx
CHANGED
|
@@ -3,7 +3,6 @@ import React from 'react';
|
|
|
3
3
|
import { tokens } from '@availity/design-tokens';
|
|
4
4
|
|
|
5
5
|
export interface AvatarProps extends Omit<MuiAvatarProps, 'variant'> {
|
|
6
|
-
children: React.ReactNode;
|
|
7
6
|
/** The size of the component.
|
|
8
7
|
* @default xl */
|
|
9
8
|
size?: 'xs' | 's' | 'm' | 'l' | 'xl'; // If this changes, you will need to update the story as well. Options are hardcoded to ensure order.
|