react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 378 B
JavaScript
import * as React from 'react';
export function SvgCalendarPlus(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M9 5v1H5v22h22V6h-4V5h-2v1H11V5zM7 8h2v1h2V8h10v1h2V8h2v2H7zm0 4h18v14H7zm8 2v4h-4v2h4v4h2v-4h4v-2h-4v-4z" })));
}
export default SvgCalendarPlus;