@useloops/design-system
Version:
The official React based Loops design system
12 lines (9 loc) • 311 B
TypeScript
import { FunctionComponent, PropsWithChildren } from 'react';
interface NudgeBoxProps extends PropsWithChildren {
description: string;
notification?: boolean;
title: string;
}
declare const NudgeBox: FunctionComponent<NudgeBoxProps>;
export { NudgeBox as default };
export type { NudgeBoxProps };