|
|
import React from "react"; |
|
|
|
|
|
const Playlist = ({ items }) => { |
|
|
return ( |
|
|
<section className="flex flex-row flex-wrap items-center gap-4 mt-7"> |
|
|
{items.map((item, index) => ( |
|
|
<div |
|
|
className="flex flex-row items-center bg-white border-2 border-[#EEEEEE] rounded-lg px-2 py-4" |
|
|
key={index} |
|
|
> |
|
|
<img src={item.icon} className="w-14" alt="" /> |
|
|
<div className="flex flex-col mr-1"> |
|
|
<p className="text-sm text-[#00253A]">{item.title}</p> |
|
|
<span className="text-xs mt-2 text-[#81818177]"> |
|
|
{item.percent} |
|
|
</span> |
|
|
</div> |
|
|
<div className="flex flex-col items-center mr-3"> |
|
|
<p className="font-sansbold text-xs text-[#132F52]"> |
|
|
{item.memory} |
|
|
<span className="text-[10px]">گیگابایت</span> |
|
|
</p> |
|
|
<p className="font-sansbold text-xs mt-2 text-[#132F52]"> |
|
|
{item.fileNum} |
|
|
<span className="text-[10px]">فایل</span> |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
))} |
|
|
</section> |
|
|
); |
|
|
}; |
|
|
|
|
|
export default Playlist; |
|
|
|
|
|
Playlist.defaultProps = { |
|
|
items: [ |
|
|
{ |
|
|
icon: "images/Playlistdocument.svg", |
|
|
title: "عکسها", |
|
|
percent: "27 درصد استفاده شده", |
|
|
memory: 44, |
|
|
fileNum: 344, |
|
|
}, |
|
|
{ |
|
|
icon: "images/Playlistmusic-square.svg", |
|
|
title: "صوتی", |
|
|
percent: "27 درصد استفاده شده", |
|
|
memory: 44, |
|
|
fileNum: 444, |
|
|
}, |
|
|
{ |
|
|
icon: "images/Playlistvideo-play.svg", |
|
|
title: "ویدئو", |
|
|
percent: "27 درصد استفاده شده", |
|
|
memory: 96, |
|
|
fileNum: 75, |
|
|
}, |
|
|
{ |
|
|
icon: "images/Playlistgallery.svg", |
|
|
title: "فایلهای مختلف", |
|
|
percent: "27 درصد استفاده شده", |
|
|
memory: 92, |
|
|
fileNum: 71, |
|
|
}, |
|
|
], |
|
|
};
|
|
|
|