UNPKG

alchemy-tech-ui

Version:

react component library for alchemy apps

14 lines (13 loc) 354 B
/// <reference types="react" /> export interface NavButtonProps { text: string; active?: boolean; onClick?: () => void; className?: string; } /** * Dark bold text * hover effect: subtly highlight bg with rounded edge * underline? */ export default function NavLink({ text, active, onClick, className, }: NavButtonProps): JSX.Element;