<script>
import { format } from 'date-fns'
const dateFormats = [
'yyyy-MM-dd',
'yyyy/MM/dd',
'dd/MM/yyyy',
'dd-MM-yyyy',
'eee d MMM',
'eeee'
]
const timeFormats = [
'hh:mm',
'h:mm a',
'HH:mm',
'ha',
]
const icons = [
'truck',
'mail',
'plane',
'none',
'custom'
]
let message = 'Arrives between <strong>{{earliest}}</strong> and <strong>{{latest}}</strong>'
let dateFormat = dateFormats[0]
let timeFormat = timeFormats[0]
let colors = {
text: '#444444',
background: '#cccccc',
icon: '#444444',
}
let icon = 'truck'
let iconUrl = ''