17 lines
406 B
JavaScript
17 lines
406 B
JavaScript
import { commonLight } from "../../_styles/common/index.mjs";
|
|
import { createTheme } from "../../_mixins/index.mjs";
|
|
import { avatarLight } from "../../avatar/styles/index.mjs";
|
|
export function self() {
|
|
return {
|
|
gap: '-12px'
|
|
};
|
|
}
|
|
const avatarGroupLight = createTheme({
|
|
name: 'AvatarGroup',
|
|
common: commonLight,
|
|
peers: {
|
|
Avatar: avatarLight
|
|
},
|
|
self
|
|
});
|
|
export default avatarGroupLight; |