8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import Svg, { Path } from 'react-native-svg';
|
|
|
|
export const NoNewsIcon = () => (
|
|
<Svg width="56" height="56" viewBox="0 0 56 56" fill="none">
|
|
<Path d="M0 56.0001H56V7.77245e-05H0V56.0001Z" fill="white" />
|
|
</Svg>
|
|
);
|