import { ITemplates } from "./interfaces"; export const templatesBasedOnUtility: ITemplates = { default: (theme: string | boolean = false) => `
<#CustomArrowPrev />
<#CustomMonth /> / <#CustomYear />
<#CustomArrowNext />
<#Week /> <#Dates />
`, multiple: (theme: string | boolean = false) => `
<#CustomArrowPrev />
<#CustomArrowNext />
<#Multiple>
<#CustomMonth /> / <#CustomYear />
<#Week /> <#Dates />
<#/Multiple>
`, year: (theme: string | boolean = false) => `
<#Years />
`, month: (theme: string | boolean = false) => `
<#Months />
`, // Custom years: (options: string, theme: string | boolean = false) => { return `
`; }, months: (theme: string | boolean = false) => `
`, hours: (theme: string | boolean = false) => `
`, minutes: (theme: string | boolean = false) => `
`, meridiem: (theme: string | boolean = false) => `
`, };