@@ -84,8 +84,7 @@ export class Chip implements ComponentInterface {
8484
8585 /**
8686 * Gets the chip fill. Uses the `fill` property if set, otherwise
87- * checks the theme config. Defaults to `solid` if
88- * neither is set.
87+ * checks the theme config. Defaults to `solid` if neither is set.
8988 */
9089 get fillValue ( ) : IonChipFill {
9190 const fillConfig = config . getObjectValue ( 'IonChip.fill' , 'solid' ) as IonChipFill ;
@@ -96,8 +95,7 @@ export class Chip implements ComponentInterface {
9695
9796 /**
9897 * Gets the chip hue. Uses the `hue` property if set, otherwise
99- * checks the theme config. Defaults to `subtle` if
100- * neither is set.
98+ * checks the theme config. Defaults to `subtle` if neither is set.
10199 */
102100 get hueValue ( ) : IonChipHue {
103101 const hueConfig = config . getObjectValue ( 'IonChip.hue' , 'subtle' ) as IonChipHue ;
@@ -108,8 +106,7 @@ export class Chip implements ComponentInterface {
108106
109107 /**
110108 * Gets the chip shape. Uses the `shape` property if set, otherwise
111- * checks the theme config. Defaults to `round` if
112- * neither is set.
109+ * checks the theme config. Defaults to `round` if neither is set.
113110 */
114111 get shapeValue ( ) : IonChipShape {
115112 const shapeConfig = config . getObjectValue ( 'IonChip.shape' , 'round' ) as IonChipShape ;
@@ -120,8 +117,7 @@ export class Chip implements ComponentInterface {
120117
121118 /**
122119 * Gets the chip size. Uses the `size` property if set, otherwise
123- * checks the theme config. Defaults to `large` if
124- * neither is set.
120+ * checks the theme config. Defaults to `large` if neither is set.
125121 */
126122 get sizeValue ( ) : IonChipSize {
127123 const sizeConfig = config . getObjectValue ( 'IonChip.size' , 'large' ) as IonChipSize ;
0 commit comments