maxmsp-gui
Version:
React component library for stylised Max MSP GUI.
14 lines (13 loc) • 323 B
TypeScript
import { FC } from 'react';
declare const TextButton: FC<{
ariaLabel?: string;
ariaPressed?: boolean | null;
inactive?: boolean;
mode?: boolean;
setValue?: boolean;
text?: string;
toggleText?: string;
onChange?: (b: boolean) => void;
onClick?: () => void;
}>;
export default TextButton;