1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Use theme variables with namespace to avoid conflicts
@use '../../../../theme/styles/variables.scss' as vars;
// ============================================
// Hikari Arrow Component - FUI Styling
// ============================================
.hi-arrow {
display: inline-flex;
align-items: center;
justify-content: center;
// Rotation states
&.hi-arrow-right {
transform: rotate(0deg);
}
&.hi-arrow-left {
transform: rotate(180deg);
}
&.hi-arrow-up {
transform: rotate(-90deg);
}
&.hi-arrow-down {
transform: rotate(90deg);
}
}
// ============================================
// Size Variants
// ============================================
.hi-arrow-14 {
width: vars.$hikari-icon-size-sm;
height: vars.$hikari-icon-size-sm;
}
.hi-arrow-16 {
width: vars.$hikari-icon-size-md;
height: vars.$hikari-icon-size-md;
}
.hi-arrow-20 {
width: vars.$hikari-icon-size-lg;
height: vars.$hikari-icon-size-lg;
}
// ============================================
// Transitions
// ============================================
// DISABLED - avoid unwanted animations when using with Glow
// .hi-arrow {
// transition: transform 0.2s ease-out;
// }