import { Add } from "@mui/icons-material"; import { Box, BoxProps, Theme, Typography, useTheme } from "@mui/material"; import React from "react"; import { MotionBox } from "./MotionComponents"; import { Variants } from "framer-motion"; export default function AddPlaylistButton(props: BoxProps) { const theme = useTheme(); return ( New playlist ); }