import { useThemeColor } from "renderer/hooks/use-theme-color.hook"; import { LaserSlider } from "../laser-slider.component"; import { BsContentTabItem, BsContentTabItemProps } from "./bs-content-tab-item.component"; type Props = Readonly<{ className?: string; tabs: BsContentTabItemProps[]; tabIndex: number; onTabChange: (index: number, tab: BsContentTabItemProps) => void; children: JSX.Element; }>; export function BsContentTabPanel({className, tabIndex, tabs, onTabChange, children}: Props) { const sliderColor = useThemeColor("second-color"); return (
{children}
) }