slanted-gamedev-toolz
Version:
A slanted mix of tools for your brilliant ideas in game design.
16 lines • 412 B
TypeScript
import type React from "react";
import type { CSSProperties } from "react";
interface Props {
label?: string;
onClick?: (arg?: any) => void;
disabled?: boolean;
isHidden?: boolean;
size?: number;
width?: number;
minWidth?: number;
isGlow?: boolean;
btnCssOverride?: CSSProperties;
}
export declare const HexBtn: React.FC<Props>;
export {};
//# sourceMappingURL=HexBtn.d.ts.map