61a1f008d0
- i18next 23->26 + react-i18next 15->17 - prettier 2->3, reformat all files - replace @fontsource/inter with @fontsource-variable/inter 5, update import path - domhandler 5->6 (aligns with transitive deps) - lint-staged 16->17
18 lines
437 B
TypeScript
18 lines
437 B
TypeScript
import React, { ComponentProps } from 'react';
|
|
import { Box, as } from 'folds';
|
|
import classNames from 'classnames';
|
|
import * as css from './styles.css';
|
|
|
|
export const NavItemOptions = as<'div', ComponentProps<typeof Box>>(
|
|
({ className, ...props }, ref) => (
|
|
<Box
|
|
className={classNames(css.NavItemOptions, className)}
|
|
alignItems="Center"
|
|
shrink="No"
|
|
gap="0"
|
|
{...props}
|
|
ref={ref}
|
|
/>
|
|
),
|
|
);
|