39 lines
745 B
Vue
39 lines
745 B
Vue
<template>
|
|
<NotificationCardBase icon="s-up-right" v-bind="props" class="card">
|
|
<p class="amount">
|
|
<span>Валюта: <strong>USDT</strong></span>
|
|
<span>Сумма: <strong>500</strong></span>
|
|
</p>
|
|
</NotificationCardBase>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { Props } from './base.vue'
|
|
|
|
const props = defineProps<Omit<Props, 'icon'>>()
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.card {
|
|
--notification-card-icon-color: #{$clr-cyan-600};
|
|
}
|
|
|
|
.amount {
|
|
@include txt-s;
|
|
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px;
|
|
border-radius: 6px;
|
|
color: $clr-grey-500;
|
|
margin-top: 8px;
|
|
background-color: $clr-grey-200;
|
|
height: 32px;
|
|
|
|
strong {
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
</style>
|