1import { ComponentType, forwardRef } from 'react';
2import createElement from 'react-native-web/dist/exports/createElement';
3
4import { ViewProps } from '../primitives/View';
5
6export const HR = forwardRef((props: ViewProps, ref) => {
7  return createElement('hr', { ...props, ref });
8}) as ComponentType<ViewProps>;
9