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
12 lines
384 B
TypeScript
12 lines
384 B
TypeScript
import React, { ComponentProps } from 'react';
|
|
import { Box, as } from 'folds';
|
|
import classNames from 'classnames';
|
|
|
|
import * as css from './RoomInputPlaceholder.css';
|
|
|
|
export const RoomInputPlaceholder = as<'div', ComponentProps<typeof Box>>(
|
|
({ className, ...props }, ref) => (
|
|
<Box className={classNames(css.RoomInputPlaceholder, className)} {...props} ref={ref} />
|
|
),
|
|
);
|