From 2150f3d96b25772dd608e245cd3508f857478c5b Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 10 Mar 2022 23:13:10 -0300 Subject: grid implementation --- .../taler-wallet-webextension/src/mui/Avatar.tsx | 52 +++++++++++++++++++++- 1 file changed, 50 insertions(+), 2 deletions(-) (limited to 'packages/taler-wallet-webextension/src/mui/Avatar.tsx') diff --git a/packages/taler-wallet-webextension/src/mui/Avatar.tsx b/packages/taler-wallet-webextension/src/mui/Avatar.tsx index 963984ab6..d5bd9d421 100644 --- a/packages/taler-wallet-webextension/src/mui/Avatar.tsx +++ b/packages/taler-wallet-webextension/src/mui/Avatar.tsx @@ -1,5 +1,53 @@ +import { css } from "@linaria/core"; import { h, Fragment, VNode, ComponentChildren } from "preact"; +import { theme } from "./style"; -export function Avatar({}: { children: ComponentChildren }): VNode { - return ; +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; +`; + +interface Props { + 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 ( +
+ {children} +
+ ); } -- cgit v1.2.3