Created
December 24, 2020 20:20
-
-
Save AnteaterKit/507cc4203400bca4b45a6a11451e8282 to your computer and use it in GitHub Desktop.
checkboxcomponentfirststate
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
@Component({ | |
selector: 'uikit-checkbox', | |
exportAs: 'uiKitCheckbox', | |
changeDetection: ChangeDetectionStrategy.OnPush, | |
encapsulation: ViewEncapsulation.None, | |
template: ` | |
<span | |
class="checkbox" | |
[class.checkbox-checked]="checked" | |
> | |
<input | |
type='checkbox' | |
/> | |
<span class="checkbox-inner"></span> | |
</span> | |
`, | |
styleUrls: ['./checkbox.component.scss'] | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment