UNPKG

@react-smufl/core

Version:

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

9 lines 374 B
import { SVGGElementDefaultProps } from '../utils/types'; export type StaffBoxProps = { width: number; lines?: 1 | 2 | 3 | 4 | 5 | 6 | undefined; x?: number | undefined; y?: number | undefined; } & SVGGElementDefaultProps; export declare const StaffBox: ({ width, lines, x, y, ...props }: StaffBoxProps) => JSX.Element; //# sourceMappingURL=StaffBox.d.ts.map