@useloops/design-system
Version:
The official React based Loops design system
14 lines (11 loc) • 412 B
TypeScript
import { FunctionComponent, PropsWithChildren } from 'react';
import { NavigationSizing } from '../../Platform/Navigation/Navigation.js';
interface NudgeProps extends PropsWithChildren {
description: string;
notification?: boolean;
title: string;
navigationSizing: NavigationSizing;
}
declare const Nudge: FunctionComponent<NudgeProps>;
export { Nudge as default };
export type { NudgeProps };