Skip to content

Instantly share code, notes, and snippets.

@AnteaterKit
Created December 24, 2020 20:20
Show Gist options
  • Save AnteaterKit/507cc4203400bca4b45a6a11451e8282 to your computer and use it in GitHub Desktop.
Save AnteaterKit/507cc4203400bca4b45a6a11451e8282 to your computer and use it in GitHub Desktop.
checkboxcomponentfirststate
@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