react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 628 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgPanoramaH(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21.54 5.16a1 1 0 00-1-.07A21.27 21.27 0 0112 6.73a21.27 21.27 0 01-8.58-1.64 1 1 0 00-1 .07A1 1 0 002 6v12a1 1 0 00.46.84 1 1 0 001 .07A21.27 21.27 0 0112 17.27a21.27 21.27 0 018.58 1.64A1.06 1.06 0 0021 19a1 1 0 00.54-.16A1 1 0 0022 18V6a1 1 0 00-.46-.84zM20 16.52a24.77 24.77 0 00-8-1.25 24.77 24.77 0 00-8 1.25v-9a24.77 24.77 0 008 1.25 24.77 24.77 0 008-1.25z" fill="currentColor"/>
</Svg>);
}
export default SvgPanoramaH;