@useloops/design-system
Version:
The official React based Loops design system
11 lines (8 loc) • 344 B
TypeScript
import { FunctionComponent, PropsWithChildren } from 'react';
interface NudgeButtonProps extends PropsWithChildren {
notification?: boolean;
onClick?: (event: React.MouseEvent<HTMLElement>) => void;
}
declare const NudgeButton: FunctionComponent<NudgeButtonProps>;
export { NudgeButton as default };
export type { NudgeButtonProps };