import React from "react"; import styled from "styled-components"; import { MdHomeFilled, MdSearch } from "react-icons/md"; import { IoLibrary } from "react-icons/io5"; import Playlist from "./Playlist"; export default function Sidebar() { return (
spotify
); } const Container = styled.div` background-color: black; color: #b3b3b3; display: flex; flex-direction: column; height: 100%; width: 100%; a { color: #b3b3b3; text-decoration: none; } .top__links { display: flex; flex-direction: column; .logo { text-align: center; margin: 1rem 0; img { max-inline-size: 80%; block-size: auto; } } ul { list-style-type: none; display: flex; flex-direction: column; gap: 1rem; padding: 1rem; li { display: flex; gap: 1rem; } li, a { cursor: pointer; transition: 0.3s ease-in-out; &:hover { color: white; } } } } `;