Skip to content

Commit

Permalink
chore(react): remove border css property in the Chip component
Browse files Browse the repository at this point in the history
  • Loading branch information
Achintha Isuru committed Jul 22, 2024
1 parent ea30edb commit 4c92c0f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion packages/react/src/components/Chip/Chip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Chip: FC<ChipProps> & WithWrapperProps = <C extends ElementType>(props: Ch

const classes: string = clsx('oxygen-chip', className);

return <MuiChip className={classes} {...rest} />;
return <MuiChip className={classes} {...rest} variant="outlined" />;
};

Chip.displayName = composeComponentDisplayName(COMPONENT_NAME);
Expand Down
1 change: 0 additions & 1 deletion packages/react/src/components/Chip/chip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

.oxygen-chip {
border-radius: var(--oxygen-customComponents-Chip-properties-border-radius);
border: var(--oxygen-customComponents-Chip-properties-border);

.MuiChip-icon {
fill: var(--oxygen-palette-text-primary);
Expand Down

0 comments on commit 4c92c0f

Please sign in to comment.