mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-13 18:04:55 +00:00
14 lines
335 B
TypeScript
14 lines
335 B
TypeScript
![]() |
import { Avatar } from 'antd';
|
||
|
import styled from 'styled-components';
|
||
|
|
||
|
export const SpacedAvatarGroup = styled(Avatar.Group)`
|
||
|
&&& > .ant-avatar-circle.ant-avatar {
|
||
|
margin-right: 10px;
|
||
|
height: 24px;
|
||
|
width: 24px;
|
||
|
}
|
||
|
&&& > .ant-avatar-circle.ant-avatar .ant-avatar-string {
|
||
|
top: -20%;
|
||
|
}
|
||
|
`;
|