Skip to content

Commit ea6d2a6

Browse files
thetaPCShaneK
andauthored
feat(chip): update fillValue to use outline prop
Co-authored-by: Shane <shane@shanessite.net>
1 parent ed967f5 commit ea6d2a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/components/chip/chip.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export class Chip implements ComponentInterface {
8585
*/
8686
get fillValue(): string {
8787
const fillConfig = config.getObjectValue('IonChip.fill', 'solid') as string;
88-
const fill = this.fill || fillConfig;
88+
const fill = this.fill || (this.outline ? 'outline' : undefined) || fillConfig;
8989

9090
return fill;
9191
}

0 commit comments

Comments
 (0)