import { Box, Typography, useTheme } from "@mui/material"; import React from "react"; import { MotionBox } from "./MotionComponents"; import { MusicNote } from "@mui/icons-material"; type PlaylistCardProps = { name: string; onClick?: () => void; }; export default function PlaylistCard({ name, onClick }: PlaylistCardProps) { const theme = useTheme(); return ( New playlist ); }