This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import Svg, { G, Path } from 'react-native-svg' | |
const eyes_open = 'M319.575 303.043v9.805M378.915 303.043v9.805' | |
const eyes_closed = 'M313.375 308.808h11.366M374.75 308.808h11.366' | |
const blink_rate = 2; // blink every 2 seconds | |
const blink_duration = .5; // eyes stay closed for 1/2 second | |
class MonaLisaEyesSvg extends React.Component { | |
constructor(props){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" An example for a vimrc file based on original by | |
" Bram Moolenaar <[email protected]> | |
" When started as "evim", evim.vim will already have done these settings. | |
if v:progname =~? "evim" | |
finish | |
endif | |
" Use Vim settings, rather than Vi settings (much better!). | |
" This must be first, because it changes other options as a side effect. |