@onehat/ui
Version:
Base UI for OneHat apps
43 lines (39 loc) • 899 B
JavaScript
import {
Icon,
VStack,
} from '@project-components/Gluestack';
import clsx from 'clsx';
import styles from '../../Styles/StyleSheets.js';
import withDraggable from '../Hoc/withDraggable.js';
import GripLinesVertical from '../Icons/GripLinesVertical.js';
function HeaderResizeHandle(props) {
const {
isDragging,
} = props;
return <VStack
style={styles.ewResize}
className={clsx(
'HeaderResizeHandle',
'h-full',
'w-3',
'items-center',
'justify-center',
isDragging ? 'bg-grey-300' : 'bg-grey-100',
)}
>
<Icon
as={GripLinesVertical}
size="sm"
className="resizeHandle text-grey-300"
/>
</VStack>;
}
function withAdditionalProps(WrappedComponent) {
return (props) => {
return <WrappedComponent
isDraggable={true}
{...props}
/>;
};
}
export default withAdditionalProps(withDraggable(HeaderResizeHandle));