UNPKG

react-native-unicons

Version:
9 lines (8 loc) 420 B
import * as React from 'react'; import Svg, { Path } from 'react-native-svg'; function SvgDiceOne(props) { return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}> <Path d="M17 2H7a5 5 0 00-5 5v10a5 5 0 005 5h10a5 5 0 005-5V7a5 5 0 00-5-5zm3 15a3 3 0 01-3 3H7a3 3 0 01-3-3V7a3 3 0 013-3h10a3 3 0 013 3zm-8-6a1 1 0 101 1 1 1 0 00-1-1z" fill="currentColor"/> </Svg>); } export default SvgDiceOne;