17 lines
340 B
JavaScript
17 lines
340 B
JavaScript
export const fixedIconData = {
|
|
src: "/assets/icons/arrow-right.svg",
|
|
alt: "arrow",
|
|
height: 24,
|
|
width: 24,
|
|
};
|
|
|
|
export const nextIconData = {
|
|
...fixedIconData,
|
|
className: "icon-left-datepicker cursor-pointer",
|
|
};
|
|
|
|
export const prevIconData = {
|
|
...fixedIconData,
|
|
className: "icon-left-datepicker cursor-pointer rotate-180",
|
|
};
|