Created
March 8, 2018 16:06
-
-
Save prateekjadhwani/aa0eadd919057e20da81b7dcf950e35c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
email-labels .email-labels { | |
padding: 20px; | |
} | |
email-labels .email-labels__title { | |
color: #b8bbc0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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