Directives Slot
Unified definition of template fragments.
import { XSlot } from '@mixin-ui/kit';
@Component({
template: `
<ng-template x-slot="name">
<span>Content</span>
</ng-template>
<!-- or -->
<span *x-slot="'name'">Content</span>
`
})
export class Usage {}