import { useTheme } from 'hooks'; import React from 'react'; import Svg, { SvgProps, Path } from 'react-native-svg'; export const Knowledge: React.FC = (props) => { const { theme } = useTheme(); return ( ); };