Skip to content
Snippets Groups Projects
Select Git revision
  • d6ee7fd72f38364291120fd40213b69241ec7cd1
  • main default protected
  • OZG-6319-inlcude-externe-fachstelle-to-collaboration
  • OZG-7981-Statistik-Anzeige-von-Mandanten
  • OZG-8378-fix-routing
  • OZG-8376-ods-select
  • OZG-8405-Alfa-Bearbeiter-auswählen-und-entfernen-Design
  • OZG-8430-radio-button-card-styling
  • admin-cleanup
  • OZG-7981-Statistik-Anzeige-von-Mandanten-2
  • wip-sebo-sebastian
  • fix-storybook
  • OZG-8314-Alfa-Vorgang-Bearbeiter-Zuweisung-entfernen
  • testing-imports
  • storybook-improvements
  • release-administration
  • OZG-8422-BenutzerSpeichern
  • release-info
  • release
  • OZG-7856_schadcode-scanner-e2e
  • OZG-7985-fix-sorting
  • 1.12.1-administration
  • 1.12.0-administration
  • 1.12.0-info
  • 2.27.0-alfa
  • 1.11.0-info
  • 1.11.0-administration
  • 2.26.0-alfa
  • 1.10.0-info
  • 1.10.0-administration
  • 2.25.0-alfa
  • 1.9.0-info
  • 1.9.0-administration
  • 2.24.0-alfa
  • 1.8.0-info
  • 1.8.0-administration
  • 2.23.0-alfa
  • 1.7.0-info
  • 1.7.0-administration
  • 2.22.0-alfa
  • 1.6.0-info
41 results

erledigen-button-container.component.html

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;
    }