react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 429 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgLinkH(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M8 12a1 1 0 001 1h6a1 1 0 000-2H9a1 1 0 00-1 1zm2 3H7a3 3 0 010-6h3a1 1 0 000-2H7a5 5 0 000 10h3a1 1 0 000-2zm7-8h-3a1 1 0 000 2h3a3 3 0 010 6h-3a1 1 0 000 2h3a5 5 0 000-10z" fill="currentColor"/>
</Svg>);
}
export default SvgLinkH;