react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 796 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgDna(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M9.2 13.73a1 1 0 00-1.41-.05A11.18 11.18 0 004 22a1 1 0 002 0 9.15 9.15 0 013.15-6.86 1 1 0 00.05-1.41zm10.17 4.64a10.86 10.86 0 00-1.6-3A14.31 14.31 0 0014.06 12C16.3 10.57 20 7.4 20 2a1 1 0 00-2 0c0 5.4-4.59 8.17-6 8.89A13.42 13.42 0 019.31 9H12a1 1 0 000-2H7.55a9.39 9.39 0 01-1-2H15a1 1 0 000-2H6.06A8.14 8.14 0 016 2a1 1 0 00-2 0c0 7.57 7.3 10.79 7.61 10.92A12.93 12.93 0 0114.7 15H12a1 1 0 000 2h4.43a9.07 9.07 0 011 2H9a1 1 0 000 2h8.94a8.26 8.26 0 01.06 1 1 1 0 002 0 10.5 10.5 0 00-.22-2.19 9.23 9.23 0 00-.41-1.44z" fill="currentColor"/>
</Svg>);
}
export default SvgDna;