Files
klz-cables.com/.pnpm-store/v10/files/b7/ce4fa0291795505116e3c032ec818a7fe662b7cbab9a443ac731fdff9b52c2255220c1ccfc0915b3f3c1931ec6d6bb945b31a7668d7f86e4e64981edd4bccd
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

36 lines
1.0 KiB
Plaintext

import type { HTMLAttributes } from 'react';
import React from 'react';
export type PillStyle = 'always-white' | 'dark' | 'error' | 'light' | 'light-gray' | 'success' | 'warning' | 'white';
export type PillProps = {
alignIcon?: 'left' | 'right';
'aria-checked'?: boolean;
'aria-controls'?: string;
'aria-expanded'?: boolean;
'aria-label'?: string;
children?: React.ReactNode;
className?: string;
draggable?: boolean;
elementProps?: {
ref: React.RefCallback<HTMLElement>;
} & HTMLAttributes<HTMLElement>;
icon?: React.ReactNode;
id?: string;
onClick?: () => void;
/**
* @default 'light'
*/
pillStyle?: PillStyle;
rounded?: boolean;
size?: 'medium' | 'small';
to?: string;
};
export type RenderedTypeProps = {
children: React.ReactNode;
className?: string;
onClick?: () => void;
to: string;
type?: 'button';
};
import './index.scss';
export declare const Pill: React.FC<PillProps>;
//# sourceMappingURL=index.d.ts.map