15 lines
334 B
TypeScript
15 lines
334 B
TypeScript
|
|
import { style } from '@vanilla-extract/css';
|
||
|
|
import { color } from 'folds';
|
||
|
|
|
||
|
|
export const RoomAvatar = style({
|
||
|
|
backgroundColor: color.Secondary.Container,
|
||
|
|
color: color.Secondary.OnContainer,
|
||
|
|
textTransform: 'capitalize',
|
||
|
|
|
||
|
|
selectors: {
|
||
|
|
'&[data-image-loaded="true"]': {
|
||
|
|
backgroundColor: 'transparent',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|