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