import React from 'react'; import { Image, TouchableOpacity, View } from 'react-native'; import type { ToolbarItem } from './actions'; import type { EditorBridge } from '../../types'; export const ToolbarItemComp = ({ onPress, disabled, active, image, editor, args, }: ToolbarItem & { editor: EditorBridge; args: Parameters[0]; }) => { return ( ); };