diff --git a/core/src/components.d.ts b/core/src/components.d.ts index 5acff1a427..4fb68ef7c8 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -751,7 +751,7 @@ export namespace Components { */ "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'; /** @@ -5983,7 +5983,7 @@ declare namespace LocalJSX { */ "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'; /** diff --git a/core/src/components/chip/chip.tsx b/core/src/components/chip/chip.tsx index 587390c25a..f35980802d 100644 --- a/core/src/components/chip/chip.tsx +++ b/core/src/components/chip/chip.tsx @@ -37,7 +37,7 @@ export class Chip implements ComponentInterface { @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';