Skip to content

Instantly share code, notes, and snippets.

@AntJanus
Created May 26, 2017 04:38
Show Gist options
  • Save AntJanus/117182c2c072f3f8f43a240771b133e3 to your computer and use it in GitHub Desktop.
Save AntJanus/117182c2c072f3f8f43a240771b133e3 to your computer and use it in GitHub Desktop.
.button {
color: () => this.hover ? 'green' : 'red';
padding: 15px;
content: () => {
return (
<button>{this.innerText}</button>
);
};
text-align: () => {
this.attrs.href.contains('#') ? 'left' : 'right';
};
.button-icon {
content: () => {
return (
<span class={this.attrs.data('icon-type')}></span>
);
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment