import { OnyxColor } from '../../types/colors.js'; import { OnyxButtonProps } from '../OnyxButton/types.js'; export type OnyxNavButtonProps = Pick & { /** * Whether the label should (visually) be hidden. */ hideLabel?: boolean; /** * Main button color. * - neutral: Used for custom nav bar actions * - primary: Used for "Login" buttons */ color?: Extract; };