UNPKG

@react-smufl/core

Version:

React component library for rendering sheet music with SMuFL-compliant music font

11 lines 412 B
import { SVGSVGElementDefaultProps } from '../utils/types'; export type ScoreMetaProps = { unit: number; }; export type ScoreProps = SVGSVGElementDefaultProps & { staffSpaceHeight: number; width: number; height: number; }; export declare const coreScore: ({ unit }: ScoreMetaProps) => ({ staffSpaceHeight, width, height, ...props }: ScoreProps) => JSX.Element; //# sourceMappingURL=Score.d.ts.map