#679 day view without sidebar on mobile - look only

This commit is contained in:
lethemanh
2026-04-06 09:34:43 +07:00
parent fbb31e4a80
commit aa96a39b28
21 changed files with 664 additions and 117 deletions
+20
View File
@@ -0,0 +1,20 @@
declare module '@linagora/twake-mui' {
export * from '@mui/material'
import type { AvatarProps as MuiAvatarProps } from '@mui/material'
export type AvatarSize = 'xs' | 's' | 'm' | 'l' | 'xl'
export type AvatarDisplay = 'initial' | 'inline'
export interface AvatarProps extends Omit<MuiAvatarProps, 'color'> {
color?: string
size?: AvatarSize | number
border?: boolean
innerBorder?: boolean
disabled?: boolean
display?: AvatarDisplay
}
export const Avatar: React.FC<AvatarProps>
export const radius: Record<string, string | number>
}