refactor(buttons): button-native without prefix

Now we don't need prefix because of shadow-dom
This commit is contained in:
Manu Mtz.-Almeida
2018-09-25 19:41:26 +02:00
parent 9d6169acdd
commit 97946eed20
14 changed files with 31 additions and 42 deletions

View File

@ -83,15 +83,15 @@ export class FabButton implements ComponentInterface {
return (
<TagType
class="fab-button-native"
class="button-native"
disabled={this.disabled}
href={this.href}
onClick={ev => openURL(this.win, this.href, ev, this.routerDirection)}
>
<span class="fab-button-close-icon">
<span class="close-icon">
<ion-icon name="close" lazy={false}></ion-icon>
</span>
<span class="fab-button-inner">
<span class="button-inner">
<slot></slot>
</span>
{this.mode === 'md' && <ion-ripple-effect></ion-ripple-effect>}