feat(windows): add chip component

references #5565
This commit is contained in:
Brandy Carney
2016-02-23 16:15:06 -05:00
parent eeac7956eb
commit 2699b44778
2 changed files with 24 additions and 0 deletions

View File

@ -11,5 +11,6 @@
"components/badge/badge.wp",
"components/button/button.wp",
"components/checkbox/checkbox.wp",
"components/chip/chip.wp",
"components/radio/radio.wp",
"components/toolbar/toolbar.wp";

View File

@ -0,0 +1,23 @@
@import "./chip";
// Windows Chip
// --------------------------------------------------
ion-chip {
}
// Generate Windows Chip Colors
// --------------------------------------------------
@each $color-name, $color-value in $colors-wp {
ion-chip {
ion-icon[#{$color-name}] {
background-color: $color-value;
color: color-inverse($color-value) !important;
}
}
}