Files
web/packages/design-system/lib/components/Form/Date/date.ts
Anton Gunnarsson f79ff9b570 Merged in chore/cleanup-unused (pull request #3461)
chore: Cleanup unused vars, exports, types

* Cleanup some unused exports

* Remove more

* Readd CampaignPageIncludedHotelsRef

* Add alias comment to procedure exports

* Remove unused exports


Approved-by: Linus Flood
2026-01-22 12:34:07 +00:00

20 lines
445 B
TypeScript

import { Lang } from "@scandic-hotels/common/constants/language"
import type { RegisterOptions } from "react-hook-form"
export const enum DateName {
day = "day",
month = "month",
year = "year",
}
export interface DateProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
labels: {
day: string
month: string
year: string
errorMessage?: string
}
lang: Lang
name: string
registerOptions?: RegisterOptions
}