UNPKG

@wandelbots/wandelbots-js-react-components

Version:

React UI toolkit for building applications on top of the Wandelbots platform

10 lines 388 B
import type { Collider } from "@wandelbots/nova-api/v1"; import type React from "react"; type ColliderElementProps = { name?: string; collider: Collider; children?: React.ReactNode; }; export default function ColliderElement({ name, collider, children, }: ColliderElementProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ColliderElement.d.ts.map