import React from "react"; import type { ComponentProps } from "react"; import { View } from "react-native"; import { Content, Divider } from "@jobber/components-native"; type DividerProps = ComponentProps; export function DividerHorizontal(props: Partial) { return ( Some amazing content Even more amazing content ); }