@onehat/ui
Version:
Base UI for OneHat apps
19 lines (17 loc) • 422 B
JavaScript
import {
Icon,
VStack,
} from '@project-components/Gluestack';
import clsx from 'clsx';
import Arcs from '../Icons/Arcs.js';
function RowSelectHandle(props) {
return <VStack
className="RowSelectHandle w-[40px] px-2 items-center justify-center select-none cursor-pointer"
>
<Icon
as={Arcs}
size="xs"
className="w-[20px] h-[20px] text-[#ddd]" />
</VStack>;
}
export default RowSelectHandle;