import { Alert, AlertDescription, AlertIcon, AlertTitle,} from '@/components/ui/Alert';export function MyAlert() { return ( <Alert> <AlertIcon name="time" /> <AlertTitle>No days available</AlertTitle> <AlertDescription> Days will appear here when more photos and videos are added to the library. </AlertDescription> </Alert> );}