import { useIcon } from 'hooks'; import React from 'react'; import Svg, { Path } from 'react-native-svg'; import { IconProps } from './types'; export const Screen: React.FC = ({ colorVariant = 'white', ...props }) => { const { getIconColor } = useIcon(); return ( ); };