2
0
Files
bot/packages/schemas/features/blocks/inputs/rating/constants.ts
Baptiste Arnaud 35300eaf34 ♻️ Introduce typebot v6 with events (#1013)
Closes #885
2023-11-08 15:34:16 +01:00

13 lines
346 B
TypeScript

import { defaultButtonLabel } from '../constants'
import { RatingInputBlock } from '../rating'
export const defaultRatingInputOptions = {
buttonType: 'Numbers',
length: 10,
labels: {
button: defaultButtonLabel,
},
customIcon: { isEnabled: false },
isOneClickSubmitEnabled: false,
} as const satisfies RatingInputBlock['options']