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
17 lines
504 B
Plaintext
17 lines
504 B
Plaintext
import type { HTMLAttributes } from 'react';
|
|
export type Props = {
|
|
readonly children: React.ReactNode;
|
|
readonly className?: string;
|
|
readonly gutter?: boolean;
|
|
readonly Header?: React.ReactNode;
|
|
readonly hoverTitle?: boolean;
|
|
readonly slug: string;
|
|
readonly title?: string;
|
|
};
|
|
export type TogglerProps = {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
disabled?: boolean;
|
|
slug: string;
|
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
//# sourceMappingURL=types.d.ts.map |