import { getClaviature } from 'claviature'; import React from 'react'; export default function Claviature({ options, onClick, onMouseDown, onMouseUp, onMouseLeave }) { const svg = getClaviature({ options, onClick, onMouseDown, onMouseUp, onMouseLeave, }); return ( {svg.children.map((el, i) => { const TagName = el.name; const { key, ...attributes } = el.attributes; return ( {el.value} ); })} ); }