import React from 'react' import { SvgProps } from 'react-native-svg' export type IconoirContextValue = Partial export const IconoirContext = React.createContext({}) export interface IconoirProviderProps { iconProps?: Partial> children: React.ReactNode } export function IconoirProvider({ iconProps, children }: IconoirProviderProps) { return }