diff --git a/angular/src/app/components/change-quantity/change-quantity.component.html b/angular/src/app/components/change-quantity/change-quantity.component.html
new file mode 100644
index 0000000..e7ffe61
--- /dev/null
+++ b/angular/src/app/components/change-quantity/change-quantity.component.html
@@ -0,0 +1,19 @@
+
+
+
+ {{value}}
+
+
+
\ No newline at end of file
diff --git a/angular/src/app/components/change-quantity/change-quantity.component.scss b/angular/src/app/components/change-quantity/change-quantity.component.scss
new file mode 100644
index 0000000..36b7259
--- /dev/null
+++ b/angular/src/app/components/change-quantity/change-quantity.component.scss
@@ -0,0 +1,21 @@
+:host {
+ .change-quantity {
+ border: 1px solid #dfdee2;
+ border-radius: 4px;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ height: 28px;
+ margin: 4px 16px 4px 0;
+
+ button {
+ background: #ffffff;
+ border: 0;
+ font-size: 28px;
+ font-weight: 300;
+ &:disabled {
+ opacity: 0.3;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/angular/src/app/components/change-quantity/change-quantity.component.spec.ts b/angular/src/app/components/change-quantity/change-quantity.component.spec.ts
new file mode 100644
index 0000000..149b442
--- /dev/null
+++ b/angular/src/app/components/change-quantity/change-quantity.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ChangeQuantityComponent } from './change-quantity.component';
+
+describe('ChangeQuantityComponent', () => {
+ let component: ChangeQuantityComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [ ChangeQuantityComponent ]
+ })
+ .compileComponents();
+
+ fixture = TestBed.createComponent(ChangeQuantityComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/angular/src/app/components/change-quantity/change-quantity.component.ts b/angular/src/app/components/change-quantity/change-quantity.component.ts
new file mode 100644
index 0000000..ae0f600
--- /dev/null
+++ b/angular/src/app/components/change-quantity/change-quantity.component.ts
@@ -0,0 +1,28 @@
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+
+export interface ChangeValue {
+ type: 'plus' | 'minus',
+ variableQuantity: number
+}
+
+@Component({
+ selector: 'app-change-quantity',
+ templateUrl: './change-quantity.component.html',
+ styleUrls: ['./change-quantity.component.scss']
+})
+export class ChangeQuantityComponent implements OnInit {
+ @Output() onChangeValue = new EventEmitter();
+ @Input() variableQuantity: number = 1
+ @Input() value: number = 1
+ @Input() disabledButton: 'minus' | 'plus' | 'none' | string[] = 'none'
+
+ constructor() { }
+
+ ngOnInit(): void {
+ }
+
+ changeValue(changeValue: ChangeValue) {
+ this.onChangeValue.emit(changeValue)
+ }
+
+}
diff --git a/angular/src/app/components/checkbox-group/checkbox-group.component.html b/angular/src/app/components/checkbox-group/checkbox-group.component.html
index c2f673f..8dd2d5d 100644
--- a/angular/src/app/components/checkbox-group/checkbox-group.component.html
+++ b/angular/src/app/components/checkbox-group/checkbox-group.component.html
@@ -1,4 +1,4 @@
-