import React from "react"; import type { IconNames } from "@jobber/design"; import { View } from "react-native"; import { useStyles } from "./BannerIcon.style"; import { Icon } from "../../../Icon"; import type { BannerTypes } from "../../types"; export interface BannerIconProps { readonly icon: IconNames; readonly type: BannerTypes; } export function BannerIcon({ icon, type }: BannerIconProps) { const styles = useStyles(); return ( ); }