wallet-core/packages/taler-wallet-webextension/src/mui/Avatar.tsx

54 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-03-11 03:13:10 +01:00
import { css } from "@linaria/core";
2022-03-11 06:17:40 +01:00
import { h, JSX, VNode, ComponentChildren } from "preact";
2022-03-11 03:13:10 +01:00
import { theme } from "./style";
2022-03-09 18:00:02 +01:00
2022-03-11 03:13:10 +01:00
const root = css`
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
width: 40px;
height: 40px;
font-family: ${theme.typography.fontFamily};
font-size: ${theme.typography.pxToRem(20)};
line-height: 1;
overflow: hidden;
user-select: none;
`;
const colorStyle = css`
color: ${theme.palette.background.default};
background-color: ${theme.palette.mode === "light"
? theme.palette.grey[400]
: theme.palette.grey[600]};
`;
const avatarImageStyle = css`
width: 100%;
height: 100%;
text-align: center;
object-fit: cover;
color: transparent;
text-indent: 10000;
`;
2022-03-11 06:17:40 +01:00
interface Props extends JSX.HTMLAttributes<HTMLDivElement> {
2022-03-11 03:13:10 +01:00
variant?: "circular" | "rounded" | "square";
children?: ComponentChildren;
}
export function Avatar({ variant, children, ...rest }: Props): VNode {
const borderStyle =
variant === "square"
? theme.shape.squareBorder
: variant === "rounded"
? theme.shape.roundBorder
: theme.shape.circularBorder;
return (
<div class={[root, borderStyle].join(" ")} {...rest}>
{children}
</div>
);
2022-03-09 18:00:02 +01:00
}