2
0
This commit is contained in:
Baptiste Arnaud
2022-06-21 12:07:41 +02:00
5 changed files with 32 additions and 52 deletions

View File

@ -7,6 +7,7 @@ type Props = {
export const RatingInputContent = ({ block }: Props) => (
<Text noOfLines={1} pr="6">
Rate from 1 to {block.options.length}
Rate from {block.options.buttonType === 'Icons' ? 1 : 0} to{' '}
{block.options.length}
</Text>
)