Files
klz-cables.com/.pnpm-store/v10/files/20/9e972ccdf0040729d27746d3cbd4f6f9aa7022432d8009726ccce7f94d539aa01b25a3e2c4a0723fb0bf417806017209b4f738bfead5dda049873f628a6ede
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

8 lines
248 B
Plaintext

/** @jsx jsx */
import { FocusEventHandler, FunctionComponent } from 'react';
declare const RequiredInput: FunctionComponent<{
readonly name?: string;
readonly onFocus: FocusEventHandler<HTMLInputElement>;
}>;
export default RequiredInput;