Files
cinny/src/app/organisms/room/RoomInputPlaceholder.tsx
T

12 lines
383 B
TypeScript
Raw Normal View History

2023-06-12 21:15:23 +10:00
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} />
)
);