@elevyg/react-native-ionicons
Version:
Ionicons 5 for React Native
8 lines (6 loc) • 947 B
JavaScript
import * as React from "react";
import Svg, { Rect, Circle, Path } from "react-native-svg";
function SvgCalendarOutline(props) {
return <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="1em" height="1em" {...props}><Rect fill="none" stroke={props.fill} strokeLinejoin="round" strokeWidth={32} x={48} y={80} width={416} height={384} rx={48} /><Circle cx={296} cy={232} r={24} /><Circle cx={376} cy={232} r={24} /><Circle cx={296} cy={312} r={24} /><Circle cx={376} cy={312} r={24} /><Circle cx={136} cy={312} r={24} /><Circle cx={216} cy={312} r={24} /><Circle cx={136} cy={392} r={24} /><Circle cx={216} cy={392} r={24} /><Circle cx={296} cy={392} r={24} /><Path fill="none" stroke={props.fill} strokeLinejoin="round" strokeWidth={32} strokeLinecap="round" d="M128 48v32M384 48v32" /><Path fill="none" stroke={props.fill} strokeLinejoin="round" strokeWidth={32} d="M464 160H48" /></Svg>;
}
export default SvgCalendarOutline;