12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
|
import React from 'react';
|
||
|
interface Action {
|
||
|
label: string;
|
||
|
icon: React.ReactNode;
|
||
|
onClick: () => void;
|
||
|
}
|
||
|
interface SpeedDialProps {
|
||
|
actions: Action[];
|
||
|
}
|
||
|
declare const SpeedDial: React.FC<SpeedDialProps>;
|
||
|
export default SpeedDial;
|