Refactor #3832 Refactor #3833 - For Rating

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-04 15:41:50 +03:00
parent 730d16d260
commit 6672378d51
3 changed files with 32 additions and 18 deletions

View file

@ -28,6 +28,24 @@ const RatingProps = [
type: 'boolean',
default: 'true',
description: 'When specified a cancel icon is displayed to allow clearing the value.'
},
{
name: 'onIcon',
type: 'string',
default: 'null',
description: 'Icon for the on state.'
},
{
name: 'offIcon',
type: 'string',
default: 'null',
description: 'Icon for the off state.'
},
{
name: 'cancelIcon',
type: 'string',
default: 'null',
description: 'Icon for the cancelable state.'
}
];