Skip to content
Snippets Groups Projects
Select Git revision
  • 1ffa7ef9c1ebe9eb80842a4f852b210c0eee8158
  • main default protected
  • ozg-8323-umzug-dependency-track
  • OZG-8252-gitlab-pipelines
  • release
  • OZG-7856_schadcode_scanner
  • ci-pipeline
  • OZG-7526-signatur-nicht-uebernommen
  • OZG-6223-zip-download-bug
  • OZG-7367-tooltip-extension
  • OZG-7023-OZG-6956-E2E-externe-Stellen
  • OZG-6238-npm-durch-pnpm-ersetzen
  • release-admin
  • release-info
  • OZG-6700-admin-feature-toggle
  • E2E-Updates
  • OZG-7047-tooltips
  • OZG-6957-e2e-fachstellen-oe-daten
  • OZG-7006-ZuarbeitAnfragen
  • temp_OZG-7027
  • unit-tests-hotfix
  • 2.27.0
  • 2.26.0
  • 2.25.0
  • 2.24.2
  • 2.24.1
  • 2.24.0
  • 2.23.0
  • 2.22.0
  • 2.21.0
  • 2.20.0
  • 2.21.0-SNAPSHOT
  • 2.19.0
  • 2.18.0
  • 2.17.1
  • 1.3.0
  • release-admin-1.3.0
  • release-info-1.3.0
  • 2.17.0
  • 2.16.0
  • 2.15.0
41 results

commands.ts

Blame
  • send-icon.component.ts 840 B
    import { NgClass } from '@angular/common';
    import { Component, Input } from '@angular/core';
    import { twMerge } from 'tailwind-merge';
    
    import { IconVariants, iconVariants } from '../iconVariants';
    
    @Component({
      selector: 'ods-send-icon',
      standalone: true,
      imports: [NgClass],
      template: `<svg
        xmlns="http://www.w3.org/2000/svg"
        [ngClass]="[twMerge(iconVariants({ size }), 'fill-primary', class)]"
        aria-hidden="true"
        viewBox="0 0 24 24"
        fill="none"
      >
        <path
          d="M0 21.6693V0.335938L25.3333 11.0026L0 21.6693ZM2.66667 17.6693L18.4667 11.0026L2.66667 4.33594V9.0026L10.6667 11.0026L2.66667 13.0026V17.6693Z"
        />
      </svg>`,
    })
    export class SendIconComponent {
      @Input() size: IconVariants['size'] = 'medium';
      @Input() class: string = undefined;
    
      iconVariants = iconVariants;
      twMerge = twMerge;
    }