@carton-org/react-neumorphism
Version:
A React component library implementing the neumorphism design style
14 lines • 527 B
TypeScript
import { PopoverAlignment } from './popover.types';
export interface PopoverProps {
anchorRef: React.RefObject<HTMLElement | null>;
display: boolean;
children?: React.ReactNode;
alignment?: PopoverAlignment;
onClickOutside?: () => void;
popoverContainerStyle?: React.CSSProperties;
}
declare const _default: import('react').ForwardRefExoticComponent<Pick<PopoverProps, keyof PopoverProps> & {
theme?: import('@emotion/react').Theme;
}>;
export default _default;
//# sourceMappingURL=Popover.d.ts.map