import { requireNativeView } from 'expo';
import * as React from 'react';

import { ExpoEscPosUtilsViewProps } from './ExpoEscPosUtils.types';

const NativeView: React.ComponentType<ExpoEscPosUtilsViewProps> =
  requireNativeView('ExpoEscPosUtils');

export default function ExpoEscPosUtilsView(props: ExpoEscPosUtilsViewProps) {
  return <NativeView {...props} />;
}
