react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 418 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgMobileAndroidAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M16 2H8a3 3 0 00-3 3v14a3 3 0 003 3h8a3 3 0 003-3V5a3 3 0 00-3-3zm1 17a1 1 0 01-1 1H8a1 1 0 01-1-1v-1h10zm0-3H7V5a1 1 0 011-1h8a1 1 0 011 1z" fill="currentColor"/>
</Svg>);
}
export default SvgMobileAndroidAlt;