/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import "./hotbar-menu.scss"; import type { HTMLAttributes, ReactNode } from "react"; import React, { useState } from "react"; import { cssNames } from "../../utils"; export interface HotbarCellProps extends HTMLAttributes { children?: ReactNode; index: number; innerRef?: React.Ref; } export function HotbarCell({ innerRef, children, className, ...rest }: HotbarCellProps) { const [animating, setAnimating] = useState(false); const onAnimationEnd = () => { setAnimating(false); }; const onClick = () => { setAnimating(!className?.includes("isDraggingOver")); }; return (
{children}
); }