mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-01-28 07:43:18 +00:00
🎨 Add new Flux icons: implement multiple reusable icon components (e.g., hand-raised, hand-thumb-up, heart, hashtag, home) with variant support for improved UI consistency.
This commit is contained in:
21
resources/views/flux/chart/axis/grid.blade.php
Normal file
21
resources/views/flux/chart/axis/grid.blade.php
Normal file
@@ -0,0 +1,21 @@
|
||||
@aware(['axis' => 'x'])
|
||||
|
||||
@if ($axis === 'x')
|
||||
<template name="grid-line">
|
||||
<line {{ $attributes->merge([
|
||||
'type' => 'horizontal',
|
||||
'class' => 'text-zinc-200/50 dark:text-white/15',
|
||||
'stroke' => 'currentColor',
|
||||
'stroke-width' => '1',
|
||||
]) }}></line>
|
||||
</template>
|
||||
@else
|
||||
<template name="grid-line">
|
||||
<line {{ $attributes->merge([
|
||||
'type' => 'vertical',
|
||||
'class' => 'text-zinc-200/50 dark:text-white/15',
|
||||
'stroke' => 'currentColor',
|
||||
'stroke-width' => '1',
|
||||
]) }}></line>
|
||||
</template>
|
||||
@endif
|
||||
Reference in New Issue
Block a user