UNPKG

react-native-remix-icon

Version:
16 lines (15 loc) 470 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgCalendarEventLine = props => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" width={24} height={24} {...props} > <Path d="M9 1v2h6V1h2v2h4a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4V1zm11 10H4v8h16zm-9 2v4H6v-4zM7 5H4v4h16V5h-3v2h-2V5H9v2H7z" /> </Svg> ); export default SvgCalendarEventLine;