@quikturn/logos-angular

February 11, 2026 ยท View on GitHub

Angular components for the Quikturn Logos API -- drop-in logo display, infinite carousel, and responsive grid. Built with standalone components and signal inputs for Angular 17+.

Get your API key -- free tier available, no credit card required.

Features

  • <quikturn-logo> -- single logo image with lazy loading, optional link wrapper
  • <quikturn-logo-carousel> -- infinite scrolling logo ticker (horizontal or vertical)
  • <quikturn-logo-grid> -- responsive CSS grid of logos with custom template support
  • provideQuikturnLogos() -- DI-based configuration for token and base URL
  • injectLogoUrl() -- signal-based reactive logo URL builder
  • logoUrl pipe -- template pipe for domain-to-URL conversion
  • Zero CSS dependencies -- inline styles only, no Angular Material required
  • Standalone components -- no NgModule needed, import directly
  • Signal inputs -- modern Angular patterns with input() and output()

Installation

# pnpm (recommended)
pnpm add @quikturn/logos-angular @quikturn/logos

# npm
npm install @quikturn/logos-angular @quikturn/logos

Peer dependencies: Angular >= 17, @quikturn/logos >= 0.1.0

Quick Start

1. Provide your token at the application level

// app.config.ts
import { ApplicationConfig } from "@angular/core";
import { provideQuikturnLogos } from "@quikturn/logos-angular";

export const appConfig: ApplicationConfig = {
  providers: [
    provideQuikturnLogos({ token: "qt_your_publishable_key" }),
  ],
};

2. Import and use components

import { Component } from "@angular/core";
import { QuikturnLogoComponent, QuikturnLogoCarouselComponent } from "@quikturn/logos-angular";

@Component({
  selector: "app-example",
  standalone: true,
  imports: [QuikturnLogoComponent, QuikturnLogoCarouselComponent],
  template: `
    <!-- Single logo -->
    <quikturn-logo domain="github.com" [size]="64" />

    <!-- Infinite scrolling carousel -->
    <quikturn-logo-carousel
      [domains]="['github.com', 'stripe.com', 'vercel.com', 'figma.com']"
      [speed]="120"
      [fadeOut]="true"
      [pauseOnHover]="true"
    />
  `,
})
export class ExampleComponent {}

All components, pipes, and signal functions automatically inherit the token from provideQuikturnLogos().

API Reference

provideQuikturnLogos(config)

Provides Quikturn configuration to the Angular DI system. Call this in your ApplicationConfig or a component's providers array.

provideQuikturnLogos({ token: "qt_abc123", baseUrl: "https://custom.api" })
OptionTypeRequiredDescription
tokenstringyesPublishable API key (qt_/pk_ prefix)
baseUrlstringnoOverride the Quikturn API base URL

Renders a single logo <img>. Optionally wraps in an <a> tag when href is provided. Validates href to reject javascript: and data: protocols.

<quikturn-logo
  domain="stripe.com"
  [size]="128"
  format="webp"
  [greyscale]="true"
  theme="dark"
  alt="Stripe"
  href="https://stripe.com"
  loading="lazy"
  class="my-logo"
/>

Inputs

InputTypeDefaultDescription
domainstringrequiredDomain to fetch logo for
tokenstringfrom providerPublishable API key
baseUrlstringfrom providerAPI base URL override
sizenumber--Logo width in pixels
formatstring--"png", "jpeg", "webp", "avif", or MIME type
greyscaleboolean--Greyscale transformation
themestring--"light" or "dark"
altstring"<domain> logo"Image alt text
hrefstring--Wraps the image in a link
loading"lazy" | "eager""lazy"Native image loading strategy
classstring--CSS class on wrapper element

Outputs

OutputTypeDescription
imgErrorEventEmitted when the logo image fails to load
imgLoadEventEmitted when the logo image loads successfully

Infinite scrolling logo ticker powered by requestAnimationFrame. Supports horizontal (left/right) and vertical (up/down) scrolling, hover-based speed changes, fade overlays, and per-logo customization.

<quikturn-logo-carousel
  [domains]="['github.com', 'stripe.com', 'vercel.com', 'figma.com']"
  [speed]="120"
  direction="left"
  [logoHeight]="28"
  [gap]="48"
  [fadeOut]="true"
  fadeOutColor="#f5f5f5"
  [pauseOnHover]="true"
  [scaleOnHover]="true"
  width="100%"
/>

Using logos for per-logo configuration

<quikturn-logo-carousel
  [logos]="[
    { domain: 'github.com', href: 'https://github.com', alt: 'GitHub' },
    { domain: 'stripe.com', size: 256, greyscale: true },
    { domain: 'vercel.com', theme: 'dark' }
  ]"
/>

Inputs

InputTypeDefaultDescription
domainsstring[]--Simple list of domains (use this or logos)
logosLogoConfig[]--Per-logo configuration objects (use this or domains)
tokenstringfrom providerPublishable API key
baseUrlstringfrom providerAPI base URL override
speednumber120Scroll speed in pixels per second
direction"left" | "right" | "up" | "down""left"Scroll direction
pauseOnHoverboolean--Pause scrolling on mouse hover
hoverSpeednumber--Custom speed during hover (0 = pause, overrides pauseOnHover)
logoHeightnumber28Height of each logo image in pixels
gapnumber32Gap between logos in pixels
widthnumber | string"100%"Container width (600, "80%", etc.)
fadeOutbooleanfalseShow gradient fade overlays at edges
fadeOutColorstring"#ffffff"Fade overlay color (match your background)
scaleOnHoverbooleanfalseScale logos on individual hover
logoSizenumber--Default image fetch width for all logos
logoFormatstring--Default image format for all logos
logoGreyscaleboolean--Default greyscale setting for all logos
logoThemestring--Default theme for all logos
classstring--CSS class on root container
ariaLabelstring"Company logos"Accessible label for the region

LogoConfig

Used in the logos array for per-logo customization:

interface LogoConfig {
  domain: string;        // Required
  href?: string;         // Wrap in link
  alt?: string;          // Alt text override
  size?: number;         // Per-logo image width
  format?: string;       // Per-logo format
  greyscale?: boolean;   // Per-logo greyscale
  theme?: "light" | "dark";
}

<quikturn-logo-grid>

Responsive CSS grid of logos with optional custom templates.

<quikturn-logo-grid
  [domains]="['github.com', 'stripe.com', 'vercel.com', 'figma.com']"
  [columns]="4"
  [gap]="24"
  ariaLabel="Our partners"
/>

Custom template

<quikturn-logo-grid [domains]="companies">
  <ng-template #renderItem let-logo let-i="index">
    <div class="custom-card">
      <img [src]="logo.url" [alt]="logo.alt" />
      <span>{{ logo.domain }}</span>
    </div>
  </ng-template>
</quikturn-logo-grid>

Inputs

InputTypeDefaultDescription
domainsstring[]--Simple list of domains (use this or logos)
logosLogoConfig[]--Per-logo configuration objects
tokenstringfrom providerPublishable API key
baseUrlstringfrom providerAPI base URL override
columnsnumber4Number of grid columns
gapnumber24Grid gap in pixels
logoSizenumber--Default image fetch width
logoFormatstring--Default image format
logoGreyscaleboolean--Default greyscale
logoThemestring--Default theme
classstring--CSS class on grid container
ariaLabelstring"Company logos"Accessible label for the region

logoUrl Pipe

Transform a domain string into a logo URL directly in templates.

import { Component } from "@angular/core";
import { LogoUrlPipe } from "@quikturn/logos-angular";

@Component({
  selector: "app-pipe-demo",
  standalone: true,
  imports: [LogoUrlPipe],
  template: `
    <img [src]="'github.com' | logoUrl" alt="GitHub logo" />
    <img [src]="'google.com' | logoUrl: { size: 64, format: 'webp' }" alt="Google logo" />
  `,
})
export class PipeDemoComponent {}

The pipe reads the token from the QUIKTURN_CONFIG injection token. You can override per-use:

<img [src]="'github.com' | logoUrl: { token: 'qt_other_token' }" alt="GitHub" />

injectLogoUrl(options)

Signal-based helper that builds a reactive logo URL. Must be called within an Angular injection context. The returned signal recomputes automatically whenever any input signal changes.

import { Component, signal } from "@angular/core";
import { injectLogoUrl } from "@quikturn/logos-angular";

@Component({
  selector: "app-signal-demo",
  standalone: true,
  template: `<img [src]="logoSrc()" alt="Logo" />`,
})
export class SignalDemoComponent {
  domain = signal("github.com");

  logoSrc = injectLogoUrl({
    domain: () => this.domain(),
    size: () => 128,
    format: () => "webp",
  });
}
OptionTypeDescription
domain() => stringReactive getter for the domain (required)
token() => string | undefinedOverride the provider token
baseUrl() => string | undefinedOverride the provider base URL
size() => number | undefinedLogo width in pixels
format() => string | undefinedOutput format
greyscale() => boolean | undefinedGreyscale transformation
theme() => string | undefinedTheme optimization

Returns: Signal<string> -- computed signal with the full logo URL


Types

All types are exported for use in your application:

import type {
  QuikturnConfig,
  LogoOptions,
  LogoConfig,
  ResolvedLogo,
  SupportedOutputFormat,
  FormatShorthand,
  ThemeOption,
} from "@quikturn/logos-angular";
TypeDescription
QuikturnConfigConfiguration for provideQuikturnLogos() (token, optional baseUrl)
LogoOptionsOptions for logo generation (size, format, greyscale, theme)
LogoConfigPer-logo config extending LogoOptions with domain, href, alt
ResolvedLogoInternal resolved logo with pre-built url, domain, alt, href
SupportedOutputFormatFull format strings (re-exported from @quikturn/logos)
FormatShorthandShort format aliases (re-exported from @quikturn/logos)
ThemeOption"light" | "dark" (re-exported from @quikturn/logos)

API Summary

ExportKindDescription
provideQuikturnLogos()FunctionProvide config to Angular DI
QUIKTURN_CONFIGInjectionTokenAccess config directly via inject()
injectLogoUrl()FunctionSignal-based reactive logo URL builder
LogoUrlPipePipeTemplate pipe for domain-to-URL conversion
QuikturnLogoComponentComponentSingle logo image
QuikturnLogoGridComponentComponentGrid layout of logos
QuikturnLogoCarouselComponentComponentInfinite scrolling carousel

Examples

Logo Wall (Marketing Page)

@Component({
  selector: "app-logo-wall",
  standalone: true,
  imports: [QuikturnLogoCarouselComponent],
  template: `
    <h2>Trusted by industry leaders</h2>
    <quikturn-logo-carousel
      [domains]="partners"
      [speed]="80"
      [logoHeight]="32"
      [gap]="64"
      [fadeOut]="true"
      [pauseOnHover]="true"
    />
  `,
})
export class LogoWallComponent {
  partners = [
    "github.com", "stripe.com", "vercel.com", "figma.com",
    "linear.app", "notion.so", "slack.com", "discord.com",
  ];
}
@Component({
  selector: "app-partner-grid",
  standalone: true,
  imports: [QuikturnLogoGridComponent],
  template: `
    <quikturn-logo-grid [logos]="partners" [columns]="2" [gap]="32" />
  `,
})
export class PartnerGridComponent {
  partners: LogoConfig[] = [
    { domain: "github.com", href: "https://github.com", alt: "GitHub" },
    { domain: "stripe.com", href: "https://stripe.com", alt: "Stripe" },
    { domain: "vercel.com", href: "https://vercel.com", alt: "Vercel" },
    { domain: "figma.com", href: "https://figma.com", alt: "Figma" },
  ];
}
<div style="height: 240px">
  <quikturn-logo-carousel
    [domains]="['github.com', 'stripe.com', 'vercel.com']"
    direction="up"
    [speed]="60"
    [logoHeight]="24"
  />
</div>

Signal-Based Reactive URL

@Component({
  selector: "app-reactive",
  standalone: true,
  template: `
    <input [(ngModel)]="domain" placeholder="Enter a domain" />
    <img [src]="logoSrc()" [alt]="domain() + ' logo'" />
  `,
})
export class ReactiveComponent {
  domain = signal("github.com");
  logoSrc = injectLogoUrl({
    domain: () => this.domain(),
    size: () => 256,
    format: () => "webp",
  });
}

Resources

  • Quikturn website -- sign up, manage keys, explore the API
  • Dashboard -- usage analytics, key management, plan upgrades
  • Pricing -- free tier, pro, and enterprise plans
  • Core SDK docs -- @quikturn/logos URL builder, browser client, server client

License

MIT -- built by Quikturn