react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 419 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgPlusSquare(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M9 13h2v2a1 1 0 002 0v-2h2a1 1 0 000-2h-2V9a1 1 0 00-2 0v2H9a1 1 0 000 2zM21 2H3a1 1 0 00-1 1v18a1 1 0 001 1h18a1 1 0 001-1V3a1 1 0 00-1-1zm-1 18H4V4h16z" fill="currentColor"/>
</Svg>);
}
export default SvgPlusSquare;