15 lines
511 B
Vue
15 lines
511 B
Vue
<template>
|
||
<div class="w-full border border-slate-100 p-4 rounded-xl flex items-center gap-4">
|
||
<img class="w-16" src="/sneakers/sneakers-1.jpg" alt="Sneaker">
|
||
|
||
<div class="flex flex-col justify-between">
|
||
<p>Мужские кроссовки Nike Blazer Mid Suede</p>
|
||
|
||
<div class="flex justify-between mt-2">
|
||
<b>12 990 руб.</b>
|
||
<img src="/close.svg" alt="Close" class="cursor-pointer transition opacity-40 hover:opacity-100">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|