react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 376 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgThLarge(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M20 3H4a1 1 0 00-1 1v16a1 1 0 001 1h16a1 1 0 001-1V4a1 1 0 00-1-1zm-9 16H5v-6h6zm0-8H5V5h6zm8 8h-6v-6h6zm0-8h-6V5h6z" fill="currentColor"/>
</Svg>);
}
export default SvgThLarge;