import React from 'react'; import type { StylingFunction } from 'react-base16-styling'; interface Props { styling: StylingFunction; arrowStyle?: 'single' | 'double'; expanded: boolean; nodeType: string; onClick: React.MouseEventHandler; } export default function JSONArrow({ styling, arrowStyle = 'single', expanded, nodeType, onClick, }: Props) { return (
{'\u25B6'} {arrowStyle === 'double' && (
{'\u25B6'}
)}
); }