// Copyright 2017-2026 @pezkuwi/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import { styled } from './styled.js'; interface Props { children?: React.ReactNode; className?: string; color?: string; icon: React.ReactNode; isBig?: boolean; title: React.ReactNode; subtitle: React.ReactNode; } function AvatarItem ({ children, className = '', icon, isBig, subtitle, title }: Props): React.ReactElement { return (
{icon}
{title}
{subtitle}
{children}
); } const StyledDiv = styled.div` & { display: flex; align-items: center; .ui--AvatarItem-icon { margin-right: 0.5rem; display: flex; align-items: center; justify-content: center; } } .ui--AvatarItem-details { .ui--AvatarItem-title { font-weight: 600; font-size: var(--font-size-base); } .ui--AvatarItem-subtitle { font-weight: var(--font-weight-normal); font-size: var(--font-size-base); } } &.big { .ui--AvatarItem-icon { width: 3.4rem; height: 3.4rem; margin-right: 0.6rem; > .ui--Icon { font-size: 1.6rem; line-height: 3.4rem; } } .ui--AvatarItem-details { .ui--AvatarItem-name { font-size: 1.4rem; line-height: 1.4rem; } } } `; export default React.memo(AvatarItem);