wip
This commit is contained in:
@@ -2,10 +2,10 @@
|
||||
|
||||
namespace App\Filament\Clusters\VisaMasterPayments\Resources\VisaMasterPaymentOrders\Schemas;
|
||||
|
||||
use App\Modules\Filament\Traits\HasFilamentUser;
|
||||
use App\Modules\FilamentPermission\Repositories\FilamentPermissionRepository;
|
||||
use App\Modules\OrderStatus\Repositories\OrderStatusRepository;
|
||||
use App\Modules\Region\Repositories\RegionRepository;
|
||||
use App\Modules\VisaMasterPaymentOrder\Models\VisaMasterPaymentOrder;
|
||||
use App\Modules\VisaMasterPaymentOrder\Repositories\VisaMasterPaymentOrderRepository;
|
||||
use Filament\Forms\Components\FileUpload;
|
||||
use Filament\Forms\Components\Hidden;
|
||||
use Filament\Forms\Components\KeyValue;
|
||||
@@ -14,12 +14,12 @@ use Filament\Forms\Components\Select;
|
||||
use Filament\Forms\Components\Textarea;
|
||||
use Filament\Forms\Components\TextInput;
|
||||
use Filament\Forms\Components\Toggle;
|
||||
use Filament\Schemas\Components\Fieldset;
|
||||
use Filament\Schemas\Components\Section;
|
||||
use Filament\Schemas\Components\Wizard;
|
||||
use Filament\Schemas\Components\Wizard\Step;
|
||||
use Filament\Schemas\Schema;
|
||||
use Filament\Support\Icons\Heroicon;
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
class VisaMasterPaymentOrderForm
|
||||
@@ -33,16 +33,17 @@ class VisaMasterPaymentOrderForm
|
||||
Section::make(__('Order details'))
|
||||
->columnSpan(4)
|
||||
->columns(4)
|
||||
->disabled(fn (string $context): bool => FilamentPermissionRepository::forClients())
|
||||
->components([
|
||||
Select::make('status')
|
||||
->label(__('Status'))
|
||||
->options(VisaMasterPaymentOrderRepository::statusValues())
|
||||
->default(VisaMasterPaymentOrderRepository::defaultStatus())
|
||||
->options(OrderStatusRepository::statusValues())
|
||||
->default(OrderStatusRepository::defaultStatus())
|
||||
->native(false)
|
||||
->columnSpan(2),
|
||||
|
||||
Toggle::make('paid')
|
||||
->label(__('Paid'))
|
||||
->label(sprintf('%s (%s)', __('Paid'), __('This month')))
|
||||
->inline(false)
|
||||
->disabled(true)
|
||||
->onIcon(Heroicon::CheckCircle)
|
||||
@@ -56,19 +57,38 @@ class VisaMasterPaymentOrderForm
|
||||
]),
|
||||
|
||||
Wizard::make([
|
||||
Step::make(__('General information'))
|
||||
Step::make(__('Order type and bank'))
|
||||
->schema([
|
||||
Select::make('type')
|
||||
->label(__('Type'))
|
||||
->options(VisaMasterPaymentOrder::applicationTypes())
|
||||
->native(false)
|
||||
->required(),
|
||||
Fieldset::make(__('Order type'))
|
||||
->schema([
|
||||
Select::make('type')
|
||||
->label(__('Type'))
|
||||
->options(VisaMasterPaymentOrder::applicationTypes())
|
||||
->native(false)
|
||||
->required(),
|
||||
]),
|
||||
|
||||
Select::make('branch_id')
|
||||
->label(__('Branch'))
|
||||
->relationship('branch', 'name', fn (Builder $query) => $query->orderByTranslation('name'))
|
||||
->native(false)
|
||||
->required(),
|
||||
Fieldset::make(__('Location'))
|
||||
->schema([
|
||||
Select::make('region')
|
||||
->label(__('Region'))
|
||||
->options(RegionRepository::values())
|
||||
->live()
|
||||
->afterStateUpdated(fn (callable $set) => $set('branch_id', null))
|
||||
->required(),
|
||||
|
||||
Select::make('branch_id')
|
||||
->label(__('Branch'))
|
||||
->relationship('branch', 'name', function ($query, callable $get) {
|
||||
$query->orderByTranslation('name');
|
||||
|
||||
$region = $get('region');
|
||||
if ($region) {
|
||||
$query->where('region', $region);
|
||||
}
|
||||
})
|
||||
->required(),
|
||||
]),
|
||||
]),
|
||||
Step::make(__('Personal information'))
|
||||
->columns(2)
|
||||
|
||||
@@ -9,14 +9,12 @@ use Filament\Support\Icons\Heroicon;
|
||||
|
||||
class VisaMasterPaymentsCluster extends Cluster
|
||||
{
|
||||
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedUsers;
|
||||
|
||||
protected static string|BackedEnum|null $activeNavigationIcon = Heroicon::Users;
|
||||
protected static string|BackedEnum|null $navigationIcon = 'icon-visa-plain';
|
||||
|
||||
protected static ?SubNavigationPosition $subNavigationPosition = SubNavigationPosition::Top;
|
||||
|
||||
public static function getNavigationLabel(): string
|
||||
{
|
||||
return __('Visa/Master payments');
|
||||
return __('International payments');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,6 +16,7 @@ return new class extends Migration
|
||||
$table->string('unique_id')->nullable()->unique();
|
||||
|
||||
$table->string('type')->nullable();
|
||||
|
||||
$table->string('passport_name')->nullable();
|
||||
$table->string('passport_surname')->nullable();
|
||||
$table->string('phone')->nullable();
|
||||
|
||||
@@ -7,27 +7,4 @@ use App\Modules\Makeable;
|
||||
class VisaMasterPaymentOrderRepository
|
||||
{
|
||||
use Makeable;
|
||||
|
||||
/**
|
||||
* Default status
|
||||
*/
|
||||
public static function defaultStatus(): string
|
||||
{
|
||||
return 'new';
|
||||
}
|
||||
|
||||
/**
|
||||
* Status values
|
||||
*
|
||||
* @return array<string, string>
|
||||
*/
|
||||
public static function statusValues(): array
|
||||
{
|
||||
return [
|
||||
'new' => __('New'),
|
||||
'in_progress' => __('In progress'),
|
||||
'completed' => __('Completed'),
|
||||
'rejected' => __('Rejected'),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -695,5 +695,10 @@
|
||||
"Married": "Öýlenen/Durmuşa çykan",
|
||||
"Divorced": "Aýrylşan",
|
||||
"Single": "Öýlenmedik/Durmuşa çykmadyk",
|
||||
"By operator": "Operatordan"
|
||||
"By operator": "Operatordan",
|
||||
"Rejected": "Ýatyrylan",
|
||||
"Order type and bank": "Ýüztutmanyň görnüşi we bank",
|
||||
"Order type": "Ýüztutmanyň görnüşi",
|
||||
"Type": "Görnüş",
|
||||
"International payments": "Halkara tölegler"
|
||||
}
|
||||
|
||||
33
resources/svg/money-glass.svg
Normal file
33
resources/svg/money-glass.svg
Normal file
@@ -0,0 +1,33 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<title>money-bill</title>
|
||||
<g fill="none">
|
||||
<path d="M13.5996 2C15.8398 2 16.9608 1.99957 17.8164 2.43555C18.5689 2.81902 19.181 3.43109 19.5645 4.18359C20.0004 5.03924 20 6.16018 20 8.40039V10.5996C20 11.4695 19.9982 12.1707 19.9727 12.7529C20.5853 13.0947 21 13.7486 21 14.5C21 15.6046 20.1046 16.5 19 16.5C18.7169 16.5 18.4481 16.44 18.2041 16.334C18.079 16.4167 17.951 16.4959 17.8164 16.5645C16.9608 17.0004 15.8398 17 13.5996 17H7.40039C5.16018 17 4.03924 17.0004 3.18359 16.5645C2.43109 16.181 1.81902 15.5689 1.43555 14.8164C0.999573 13.9608 1 12.8398 1 10.5996V8.40039C1 6.16018 0.999573 5.03924 1.43555 4.18359C1.81902 3.43109 2.43109 2.81902 3.18359 2.43555C4.03924 1.99957 5.16018 2 7.40039 2H13.5996Z" fill="url(#1752500502796-9021023_money-bill_existing_0_r3y6h6ipg)" data-glass="origin" mask="url(#1752500502796-9021023_money-bill_mask_eixc8vhgm)"></path>
|
||||
<path d="M13.5996 2C15.8398 2 16.9608 1.99957 17.8164 2.43555C18.5689 2.81902 19.181 3.43109 19.5645 4.18359C20.0004 5.03924 20 6.16018 20 8.40039V10.5996C20 11.4695 19.9982 12.1707 19.9727 12.7529C20.5853 13.0947 21 13.7486 21 14.5C21 15.6046 20.1046 16.5 19 16.5C18.7169 16.5 18.4481 16.44 18.2041 16.334C18.079 16.4167 17.951 16.4959 17.8164 16.5645C16.9608 17.0004 15.8398 17 13.5996 17H7.40039C5.16018 17 4.03924 17.0004 3.18359 16.5645C2.43109 16.181 1.81902 15.5689 1.43555 14.8164C0.999573 13.9608 1 12.8398 1 10.5996V8.40039C1 6.16018 0.999573 5.03924 1.43555 4.18359C1.81902 3.43109 2.43109 2.81902 3.18359 2.43555C4.03924 1.99957 5.16018 2 7.40039 2H13.5996Z" fill="url(#1752500502796-9021023_money-bill_existing_0_r3y6h6ipg)" data-glass="clone" filter="url(#1752500502796-9021023_money-bill_filter_ujbe1nhgm)" clip-path="url(#1752500502796-9021023_money-bill_clipPath_w3hwgwzi0)"></path>
|
||||
<path d="M16.5996 7C18.8398 7 19.9608 6.99957 20.8164 7.43555C21.5689 7.81902 22.181 8.43109 22.5645 9.18359C23.0004 10.0392 23 11.1602 23 13.4004V15.5996C23 17.8398 23.0004 18.9608 22.5645 19.8164C22.181 20.5689 21.5689 21.181 20.8164 21.5645C19.9608 22.0004 18.8398 22 16.5996 22H10.4004C8.16018 22 7.03924 22.0004 6.18359 21.5645C5.43109 21.181 4.81902 20.5689 4.43555 19.8164C3.99957 18.9608 4 17.8398 4 15.5996V13.4004C4 11.1602 3.99957 10.0392 4.43555 9.18359C4.81902 8.43109 5.43109 7.81902 6.18359 7.43555C7.03924 6.99957 8.16018 7 10.4004 7H16.5996ZM13.5 12C12.1193 12 11 13.1193 11 14.5C11 15.8807 12.1193 17 13.5 17C14.8807 17 16 15.8807 16 14.5C16 13.1193 14.8807 12 13.5 12ZM8.25 13.25C7.55964 13.25 7 13.8096 7 14.5C7 15.1904 7.55964 15.75 8.25 15.75C8.94036 15.75 9.5 15.1904 9.5 14.5C9.5 13.8096 8.94036 13.25 8.25 13.25ZM18.75 13.25C18.0596 13.25 17.5 13.8096 17.5 14.5C17.5 15.1904 18.0596 15.75 18.75 15.75C19.4404 15.75 20 15.1904 20 14.5C20 13.8096 19.4404 13.25 18.75 13.25Z" fill="url(#1752500502796-9021023_money-bill_existing_1_ele0nzcpm)" data-glass="blur"></path>
|
||||
<path d="M16.5996 21.25V22H10.4004V21.25H16.5996ZM22.25 15.5996V13.4004C22.25 12.268 22.2497 11.4634 22.1982 10.834C22.1475 10.2134 22.0506 9.82889 21.8955 9.52441C21.5839 8.91305 21.087 8.41605 20.4756 8.10449C20.1711 7.94936 19.7866 7.85247 19.166 7.80176C18.5367 7.75035 17.732 7.75 16.5996 7.75H10.4004C9.26798 7.75 8.46335 7.75035 7.83398 7.80176C7.21336 7.85247 6.82889 7.94936 6.52441 8.10449C5.91304 8.41605 5.41605 8.91305 5.10449 9.52441C4.94936 9.82889 4.85247 10.2134 4.80176 10.834C4.75035 11.4633 4.75 12.268 4.75 13.4004V15.5996C4.75 16.732 4.75035 17.5367 4.80176 18.166C4.85247 18.7866 4.94936 19.1711 5.10449 19.4756C5.41605 20.087 5.91304 20.5839 6.52441 20.8955C6.82889 21.0506 7.21336 21.1475 7.83398 21.1982C8.46335 21.2497 9.26798 21.25 10.4004 21.25V22L8.91602 21.9932C7.72431 21.9744 6.96088 21.9041 6.34766 21.6406L6.18359 21.5645C5.52512 21.2289 4.97413 20.7183 4.58984 20.0918L4.43555 19.8164C3.99957 18.9608 4 17.8398 4 15.5996V13.4004C4 11.1602 3.99957 10.0392 4.43555 9.18359C4.81902 8.43109 5.43109 7.81902 6.18359 7.43555C6.82525 7.10861 7.61607 7.02728 8.91602 7.00684L10.4004 7H16.5996C18.8398 7 19.9608 6.99957 20.8164 7.43555C21.5689 7.81902 22.181 8.43109 22.5645 9.18359C23.0004 10.0392 23 11.1602 23 13.4004V15.5996C23 17.8398 23.0004 18.9608 22.5645 19.8164L22.4102 20.0918C22.0259 20.7183 21.4749 21.2289 20.8164 21.5645L20.6523 21.6406C19.816 21.9999 18.6999 22 16.5996 22V21.25C17.732 21.25 18.5367 21.2497 19.166 21.1982C19.7866 21.1475 20.1711 21.0506 20.4756 20.8955C21.087 20.5839 21.5839 20.087 21.8955 19.4756C22.0506 19.1711 22.1475 18.7866 22.1982 18.166C22.2497 17.5367 22.25 16.732 22.25 15.5996Z" fill="url(#1752500502796-9021023_money-bill_existing_2_0yl733a2m)"></path>
|
||||
<defs>
|
||||
<linearGradient id="1752500502796-9021023_money-bill_existing_0_r3y6h6ipg" x1="11" y1="2" x2="11" y2="17" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"></stop>
|
||||
<stop offset="1" stop-color="#151515"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient id="1752500502796-9021023_money-bill_existing_1_ele0nzcpm" x1="13.5" y1="7" x2="13.5" y2="22" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E3E3E5" stop-opacity=".6"></stop>
|
||||
<stop offset="1" stop-color="#BBBBC0" stop-opacity=".6"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient id="1752500502796-9021023_money-bill_existing_2_0yl733a2m" x1="13.5" y1="7" x2="13.5" y2="15.687" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#fff"></stop>
|
||||
<stop offset="1" stop-color="#fff" stop-opacity="0"></stop>
|
||||
</linearGradient>
|
||||
<filter id="1752500502796-9021023_money-bill_filter_ujbe1nhgm" x="-100%" y="-100%" width="400%" height="400%" filterUnits="objectBoundingBox" primitiveUnits="userSpaceOnUse">
|
||||
<feGaussianBlur stdDeviation="2" x="0%" y="0%" width="100%" height="100%" in="SourceGraphic" edgeMode="none" result="blur"></feGaussianBlur>
|
||||
</filter>
|
||||
<clipPath id="1752500502796-9021023_money-bill_clipPath_w3hwgwzi0">
|
||||
<path d="M16.5996 7C18.8398 7 19.9608 6.99957 20.8164 7.43555C21.5689 7.81902 22.181 8.43109 22.5645 9.18359C23.0004 10.0392 23 11.1602 23 13.4004V15.5996C23 17.8398 23.0004 18.9608 22.5645 19.8164C22.181 20.5689 21.5689 21.181 20.8164 21.5645C19.9608 22.0004 18.8398 22 16.5996 22H10.4004C8.16018 22 7.03924 22.0004 6.18359 21.5645C5.43109 21.181 4.81902 20.5689 4.43555 19.8164C3.99957 18.9608 4 17.8398 4 15.5996V13.4004C4 11.1602 3.99957 10.0392 4.43555 9.18359C4.81902 8.43109 5.43109 7.81902 6.18359 7.43555C7.03924 6.99957 8.16018 7 10.4004 7H16.5996ZM13.5 12C12.1193 12 11 13.1193 11 14.5C11 15.8807 12.1193 17 13.5 17C14.8807 17 16 15.8807 16 14.5C16 13.1193 14.8807 12 13.5 12ZM8.25 13.25C7.55964 13.25 7 13.8096 7 14.5C7 15.1904 7.55964 15.75 8.25 15.75C8.94036 15.75 9.5 15.1904 9.5 14.5C9.5 13.8096 8.94036 13.25 8.25 13.25ZM18.75 13.25C18.0596 13.25 17.5 13.8096 17.5 14.5C17.5 15.1904 18.0596 15.75 18.75 15.75C19.4404 15.75 20 15.1904 20 14.5C20 13.8096 19.4404 13.25 18.75 13.25Z" fill="url(#1752500502796-9021023_money-bill_existing_1_ele0nzcpm)"></path>
|
||||
</clipPath>
|
||||
<mask id="1752500502796-9021023_money-bill_mask_eixc8vhgm">
|
||||
<rect width="100%" height="100%" fill="#FFF"></rect>
|
||||
<path d="M16.5996 7C18.8398 7 19.9608 6.99957 20.8164 7.43555C21.5689 7.81902 22.181 8.43109 22.5645 9.18359C23.0004 10.0392 23 11.1602 23 13.4004V15.5996C23 17.8398 23.0004 18.9608 22.5645 19.8164C22.181 20.5689 21.5689 21.181 20.8164 21.5645C19.9608 22.0004 18.8398 22 16.5996 22H10.4004C8.16018 22 7.03924 22.0004 6.18359 21.5645C5.43109 21.181 4.81902 20.5689 4.43555 19.8164C3.99957 18.9608 4 17.8398 4 15.5996V13.4004C4 11.1602 3.99957 10.0392 4.43555 9.18359C4.81902 8.43109 5.43109 7.81902 6.18359 7.43555C7.03924 6.99957 8.16018 7 10.4004 7H16.5996ZM13.5 12C12.1193 12 11 13.1193 11 14.5C11 15.8807 12.1193 17 13.5 17C14.8807 17 16 15.8807 16 14.5C16 13.1193 14.8807 12 13.5 12ZM8.25 13.25C7.55964 13.25 7 13.8096 7 14.5C7 15.1904 7.55964 15.75 8.25 15.75C8.94036 15.75 9.5 15.1904 9.5 14.5C9.5 13.8096 8.94036 13.25 8.25 13.25ZM18.75 13.25C18.0596 13.25 17.5 13.8096 17.5 14.5C17.5 15.1904 18.0596 15.75 18.75 15.75C19.4404 15.75 20 15.1904 20 14.5C20 13.8096 19.4404 13.25 18.75 13.25Z" fill="#000"></path>
|
||||
</mask>
|
||||
</defs>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.4 KiB |
1
resources/svg/visa-plain.svg
Normal file
1
resources/svg/visa-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M22.2215 15.7683L21.9974 14.6431L19.4831 14.6431L19.0837 15.7599L17.0677 15.7643C18.3633 12.6514 19.3247 10.3455 19.952 8.84657C20.1159 8.45511 20.4072 8.25543 20.8364 8.25848C21.1638 8.26094 21.6991 8.26124 22.4421 8.25942L24 15.7648L22.2215 15.7683ZM20.0485 13.1018H21.6692L21.0642 10.2819L20.0485 13.1018ZM7.06069 8.2567L9.08703 8.25933L5.95498 15.7683L3.90367 15.7675C3.21013 13.0896 2.70084 11.1042 2.37581 9.81122C2.27616 9.4148 2.07796 9.13797 1.69702 9.00705C1.35736 8.89031 0.791683 8.7098 0 8.46553V8.25942C1.48023 8.25924 2.55921 8.25924 3.23694 8.25942C3.7974 8.25959 4.12411 8.53015 4.22922 9.08566C4.33473 9.6435 4.60127 11.0616 5.02884 13.3398L7.06069 8.2567ZM11.8702 8.25934L10.2695 15.7676L8.34108 15.7648C8.37914 15.5824 8.91202 13.0797 9.93972 8.2567L11.8702 8.25934ZM15.7815 8.12012C16.3578 8.12012 17.0846 8.2992 17.5035 8.46553L17.1652 10.0221C16.7871 9.87023 16.1657 9.66491 15.6424 9.67294C14.8813 9.68462 14.4117 10.004 14.4117 10.3105C14.4117 10.808 15.2277 11.0586 16.0681 11.603C17.0265 12.2237 17.1531 12.78 17.1412 13.3856C17.1277 14.6413 16.0681 15.8801 13.8322 15.8801C12.8111 15.8648 12.4444 15.7791 11.6122 15.4839L11.9637 13.8595C12.8106 14.2142 13.1698 14.327 13.8935 14.327C14.5569 14.327 15.1263 14.0589 15.1312 13.5919C15.1347 13.2598 14.9316 13.0955 14.1871 12.6847C13.4427 12.2739 12.3994 11.706 12.4128 10.5631C12.43 9.10074 13.815 8.12012 15.7815 8.12012Z"></path></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
11
resources/svg/visa.svg
Normal file
11
resources/svg/visa.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<g class="nc-icon-wrapper">
|
||||
<rect x="2" y="7" width="28" height="18" rx="3" ry="3" fill="#fff" stroke-width="0"></rect>
|
||||
<path d="m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z" stroke-width="0" opacity=".15"></path>
|
||||
<path d="m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z" fill="#fff" opacity=".2" stroke-width="0"></path>
|
||||
<path d="m13.392,12.624l-2.838,6.77h-1.851l-1.397-5.403c-.085-.332-.158-.454-.416-.595-.421-.229-1.117-.443-1.728-.576l.041-.196h2.98c.38,0,.721.253.808.69l.738,3.918,1.822-4.608h1.84Z" fill="#1434cb" stroke-width="0"></path>
|
||||
<path d="m20.646,17.183c.008-1.787-2.47-1.886-2.453-2.684.005-.243.237-.501.743-.567.251-.032.943-.058,1.727.303l.307-1.436c-.421-.152-.964-.299-1.638-.299-1.732,0-2.95.92-2.959,2.238-.011.975.87,1.518,1.533,1.843.683.332.912.545.909.841-.005.454-.545.655-1.047.663-.881.014-1.392-.238-1.799-.428l-.318,1.484c.41.188,1.165.351,1.947.359,1.841,0,3.044-.909,3.05-2.317" fill="#1434cb" stroke-width="0"></path>
|
||||
<path d="m25.423,12.624h-1.494c-.337,0-.62.195-.746.496l-2.628,6.274h1.839l.365-1.011h2.247l.212,1.011h1.62l-1.415-6.77Zm-2.16,4.372l.922-2.542.53,2.542h-1.452Z" fill="#1434cb" stroke-width="0"></path>
|
||||
<path fill="#1434cb" stroke-width="0" d="M15.894 12.624L14.446 19.394 12.695 19.394 14.143 12.624 15.894 12.624z"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
Reference in New Issue
Block a user