import { ITemplates } from "./interfaces";
export const templatesBasedOnUtility: ITemplates = {
default: (theme: string | boolean = false) =>
`
<#CustomArrowPrev />
<#CustomMonth />
/
<#CustomYear />
<#CustomArrowNext />
`,
multiple: (theme: string | boolean = false) =>
`
<#CustomArrowPrev />
<#CustomArrowNext />
<#Multiple>
<#CustomMonth />
/
<#CustomYear />
<#/Multiple>
`,
year: (theme: string | boolean = false) =>
`
<#CustomArrowPrev />
<#Month />
/
<#Year />
<#CustomArrowNext />
`,
month: (theme: string | boolean = false) =>
`
`,
// 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) =>
``,
};