Updated comment

This commit is contained in:
Bernardo Cardoso
2024-04-09 12:40:18 +01:00
parent 545199889a
commit 7bcba0cae7
2 changed files with 3 additions and 3 deletions

View File

@ -751,7 +751,7 @@ export namespace Components {
*/ */
"outline": boolean; "outline": boolean;
/** /**
* Set to 'rectangular' for a chip with sharp corners. * Define the Chip corner shape, when using the Ionic Theme.
*/ */
"shape"?: 'soft' | 'round' | 'rectangular'; "shape"?: 'soft' | 'round' | 'rectangular';
/** /**
@ -5983,7 +5983,7 @@ declare namespace LocalJSX {
*/ */
"outline"?: boolean; "outline"?: boolean;
/** /**
* Set to 'rectangular' for a chip with sharp corners. * Define the Chip corner shape, when using the Ionic Theme.
*/ */
"shape"?: 'soft' | 'round' | 'rectangular'; "shape"?: 'soft' | 'round' | 'rectangular';
/** /**

View File

@ -37,7 +37,7 @@ export class Chip implements ComponentInterface {
@Prop() disabled = false; @Prop() disabled = false;
/** /**
* Set to 'rectangular' for a chip with sharp corners. * Define the Chip corner shape, when using the Ionic Theme.
*/ */
@Prop({ reflect: true }) shape?: 'soft' | 'round' | 'rectangular'; @Prop({ reflect: true }) shape?: 'soft' | 'round' | 'rectangular';