2024-05-13 03:08:26 -05:00
|
|
|
import classNames from 'classnames';
|
|
|
|
import { CSSProperties, PropsWithChildren, forwardRef } from 'react';
|
2024-05-09 05:56:45 -05:00
|
|
|
|
|
|
|
import styles from './Wrapper.module.css';
|
|
|
|
|
|
|
|
type WrapperProps = PropsWithChildren & {
|
|
|
|
style?: CSSProperties;
|
2024-05-13 03:08:26 -05:00
|
|
|
overflowing?: boolean;
|
2024-05-09 05:56:45 -05:00
|
|
|
};
|
|
|
|
|
2024-05-13 03:08:26 -05:00
|
|
|
const Wrapper = forwardRef<HTMLDivElement, WrapperProps>(
|
|
|
|
({ style, overflowing = false, children }: WrapperProps, ref) => {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
ref={ref}
|
|
|
|
className={classNames({ [styles.wrapper]: true, [styles.wrapperOverflow]: overflowing })}
|
|
|
|
style={style}
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
Wrapper.displayName = 'Wrapper';
|
|
|
|
|
|
|
|
export { Wrapper };
|