import Svg, { Path, Defs, LinearGradient, Stop } from "react-native-svg"; /* SVGR has dropped some elements not supported by react-native-svg: filter */ import type { SvgProps } from "react-native-svg"; // Fallback file-type icon (unmapped extensions) — a "no preview available" page with an eye-slash // glyph. Multi-colour by design (grey page + white glyph + fold gradient), so it ignores `color`. const SvgComponent = ({ height, width }: SvgProps) => ( ); export default SvgComponent;