UNPKG

philliplm-react-modern-audio-player

Version:

<p align="center"> <img width="20%" src="https://user-images.githubusercontent.com/70849655/180391190-2b268d23-c9f3-4e95-9fce-090897842c04.png" alt="rm-audio-player" /> <h1 align="center">React Modern Audio Player</h1> </p>

11 lines (10 loc) 415 B
import { FC, HTMLAttributes, PropsWithChildren } from "react"; export declare type DropdownContentPlacement = "top" | "bottom" | "left" | "right"; export declare type DropdownContentProps = HTMLAttributes<HTMLDivElement> & { isWithAnimation?: boolean; }; export interface DropdownSize { width: number; height: number; } export declare const DropdownContent: FC<PropsWithChildren<DropdownContentProps>>;