import Component from '@glimmer/component'; /** * @module ToolbarLink * `ToolbarLink` components style links and buttons for the Toolbar * It should only be used inside of `Toolbar`. * * @example * ```js * * * * Create policy * * * * ``` * * @param {array} params - Array to pass to LinkTo * @param {string} type - Use "add" to change icon * @param {boolean} disabled - pass true to disable link * @param {string} disabledTooltip - tooltip to display on hover when disabled */ export default class ToolbarLinkComponent extends Component { get glyph() { return this.args.type == 'add' ? 'plus' : 'chevron-right'; } }