import { theme } from "tailwind.config"; import { useEntity, useReplicache } from "src/replicache"; import { LogoSmall } from "./Icons/LogoSmall"; export const Watermark = (props: { mobile?: boolean }) => { let { rootEntity } = useReplicache(); let showWatermark = useEntity(rootEntity, "theme/page-leaflet-watermark"); if (!showWatermark?.data.value) return null; return (
made using Leaflet
); };