export let Code = {
type: `@Component({
selector: 'p-selectButton',
template:
})
export class SelectButton {
}
`,
typeMu: `@Component({
selector: 'p-selectButton',
template:
})
export class SelectButton {
}
`,
typeIcon: `@Component({
selector: 'p-selectButton',
template:
})
export class SelectButton {
types: SelectItem[];
selectedType: string;
constructor() {
this.types = [];
this.types.push({title: 'Paypal', value: 'PayPal', icon: 'fa ion-monitor'});
this.types.push({title: 'Visa', value: 'Visa', icon: 'fa ion-iphone'});
this.types.push({title: 'MasterCard', value: 'MasterCard', icon: 'fa ion-ipod'});
}
}
`
};