import React from 'react'; import Svg, {Path, Circle, Defs, LinearGradient, Stop} from 'react-native-svg'; import {StyleGuide} from '../lib/utils/styleGuide'; interface Props { size: number; disabled?: boolean; fill?: string; opacity?: number; } const BrandLogo: React.FC = ({size: width}: {size: number}) => { const RATIO = 75 / 32; const height = width / RATIO; return ( ); }; const ClosingCross: React.FC = ({size}: Props) => { return ( ); }; const Spinner: React.FC = ({size}: Props) => { return ( ); }; const SnippetLogo: React.FC = ({size: width}: {size: number}) => { const RATIO = 134 / 54; const height = width / RATIO; return ( ); }; const Round1: React.FC = ({size, fill = '#54545C'}: Props) => { return ( ); }; const Round2: React.FC = ({size, fill = '#54545C'}: Props) => { return ( ); }; const Round3: React.FC = ({size, fill = '#54545C'}: Props) => { return ( ); }; const Round4: React.FC = ({size, fill = '#54545C'}: Props) => { return ( ); }; const ArrowRight: React.FC = ({size, fill}: Props) => { return ( ); }; export { ArrowRight, Spinner, BrandLogo, ClosingCross, SnippetLogo, Round1, Round2, Round3, Round4, };