import * as React from "react"; import { View } from "react-native"; import Typography from "../ui/typography"; import { style } from "./style"; import { useSiteSettings } from "../../providers/site"; import Icon from "react-native-vector-icons/FontAwesome"; function PremiumLabel() { const { style: { active_text_color, active_color }, } = useSiteSettings(); return ( premium ); } export default PremiumLabel;