@sandstack/neuron-devtools
Version:
Devtools for Neuron global state manager. React only.
11 lines (10 loc) • 377 B
TypeScript
import { CSSProperties } from '../../node_modules/react';
interface Props {
topLeft?: boolean;
topRight?: boolean;
bottomRight?: boolean;
bottomLeft?: boolean;
style?: CSSProperties;
}
export default function FloatingIcon({ topLeft, topRight, bottomRight, bottomLeft, style, }: Props): import('../../node_modules/react/jsx-runtime').JSX.Element;
export {};