ConstThe properties for the AppBar component
A rendered AppBar component with fade-in animation
// Basic usage
<AppBarUI>
<Toolbar>
<Typography variant="h6">My App</Typography>
</Toolbar>
</AppBarUI>
// With custom styling
<AppBarUI
sx={{
backgroundColor: 'custom.main',
boxShadow: 'none'
}}
>
<Toolbar>
<IconButton>
<MenuIcon />
</IconButton>
</Toolbar>
</AppBarUI>
A customized Material-UI AppBar component with fade-in animation support.