Skip to content

Instantly share code, notes, and snippets.

@prateekjadhwani
Created March 8, 2018 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prateekjadhwani/aa0eadd919057e20da81b7dcf950e35c to your computer and use it in GitHub Desktop.
Save prateekjadhwani/aa0eadd919057e20da81b7dcf950e35c to your computer and use it in GitHub Desktop.
email-labels .email-labels {
padding: 20px;
}
email-labels .email-labels__title {
color: #b8bbc0;
}
import { Component } from '@stencil/core';
@Component({
tag: 'email-labels',
styleUrl: 'email-labels.css'
})
export class EmailLabels {
render() {
return (
<div class="email-labels">
<p class="email-labels__title">Labels</p>
<email-label label-name="Personal" label-color="ff7b6d"></email-label>
<email-label label-name="Work" label-color="05bf80"></email-label>
<email-label label-name="Friends" label-color="c76bef"></email-label>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment