diff --git a/native/vectors/farcaster-logo.react.js b/native/vectors/farcaster-logo.react.js new file mode 100644 --- /dev/null +++ b/native/vectors/farcaster-logo.react.js @@ -0,0 +1,36 @@ +// @flow + +import * as React from 'react'; +import Svg, { Path } from 'react-native-svg'; + +function FarcasterLogo(): React.Node { + const farcasterLogo = React.useMemo( + () => ( + + + + + + ), + [], + ); + + return farcasterLogo; +} + +export default FarcasterLogo;