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:
23
resources/views/flux/chart/axis/line.blade.php
Normal file
23
resources/views/flux/chart/axis/line.blade.php
Normal file
@@ -0,0 +1,23 @@
|
||||
@aware(['axis' => 'x'])
|
||||
|
||||
@if ($axis === 'x')
|
||||
<template name="axis-line">
|
||||
<line {{ $attributes->merge([
|
||||
'class' => '[:where(&)]:text-zinc-300 dark:[:where(&)]:text-white/40',
|
||||
'orientation' => 'bottom',
|
||||
'stroke-width' => '1',
|
||||
'stroke' => 'currentColor',
|
||||
'fill' => 'none',
|
||||
]) }}></line>
|
||||
</template>
|
||||
@else
|
||||
<template name="axis-line">
|
||||
<line {{ $attributes->merge([
|
||||
'class' => '[:where(&)]:text-zinc-300 dark:[:where(&)]:text-white/40',
|
||||
'orientation' => 'left',
|
||||
'stroke-width' => '1',
|
||||
'stroke' => 'currentColor',
|
||||
'fill' => 'none',
|
||||
]) }}></line>
|
||||
</template>
|
||||
@endif
|
||||
Reference in New Issue
Block a user