react-weekly-table
Version:
React weekly scheduler <br/> By default build time ranges for a week, supports up to 31 days <br/> Can work with different timezones, data always return to UTC+0
6 lines (5 loc) • 408 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from 'react';
export const CheckIcon = memo(() => {
return (_jsx("svg", Object.assign({ id: 'checkIcon', className: 'scheduler-icon check-icon', xmlns: 'http://www.w3.org/2000/svg', x: '0px', y: '0px', width: '24', height: '24', viewBox: '0 0 64 64' }, { children: _jsx("path", { d: 'M27 55L6 33 9 29 26 41 55 12 59 16z' }) })));
});