hikari-components 0.3.19

Core UI components (buttons, inputs, tables, modals) for the Hikari design system
// Use theme variables with namespace to avoid conflicts
@use '../../../../theme/styles/variables' as vars;

// ------
// Hikari Arrow Component - FUI Styling
// ------

.hk-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  // Rotation states
  &.hk-arrow-right {
    transform: rotate(0deg);
  }

  &.hk-arrow-left {
    transform: rotate(180deg);
  }

  &.hk-arrow-up {
    transform: rotate(-90deg);
  }

  &.hk-arrow-down {
    transform: rotate(90deg);
  }
}

// ------
// Size Variants
// ------

.hk-arrow-14 {
  width: vars.$hikari-icon-size-sm;
  height: vars.$hikari-icon-size-sm;
}

.hk-arrow-16 {
  width: vars.$hikari-icon-size-md;
  height: vars.$hikari-icon-size-md;
}

.hk-arrow-20 {
  width: vars.$hikari-icon-size-lg;
  height: vars.$hikari-icon-size-lg;
}

// ------
// Transitions
// ------

// DISABLED - avoid unwanted animations when using with Glow
// .hk-arrow {
//   transition: transform 0.2s ease-out;
// }