@excalidraw/math
Version:
Excalidraw math functions
11 lines (10 loc) • 306 B
TypeScript
import React from "react";
import "./Island.scss";
type IslandProps = {
children: React.ReactNode;
padding?: number;
className?: string | boolean;
style?: object;
};
export declare const Island: React.ForwardRefExoticComponent<IslandProps & React.RefAttributes<HTMLDivElement>>;
export {};