UNPKG

@cfpb/cfpb-design-system

Version:
18 lines (15 loc) 375 B
import { LitElement } from 'lit'; import { defineComponent } from '../utilities/shared-config'; import { MixinLink } from './mixin-link'; /** * @element cfpb-link. * @slot - Slot for the link text. */ export class CfpbLink extends MixinLink(LitElement) { render() { return this.renderLink(); } static init() { defineComponent('cfpb-link', CfpbLink); } }