UNPKG

krypton-vite-demo

Version:
7 lines (6 loc) 203 B
import { ComponentPropsWithoutRef } from "react"; type ButtonGroupType = { children?: React.ReactNode; }; export type ButtonGroupProps = ComponentPropsWithoutRef<"div"> & ButtonGroupType; export {};