import * as React from 'react' import * as PropTypes from 'prop-types' import keyPropTypes from '../../services/keyPropTypes' const DEFAULT_COLOR = '#35313b' const LIGHT_COLOR = 'white' type Props = PropTypes.InferProps const StyledAccidentalKey: React.FC = ({ keyChannels }) => { const hasKeyChannels = Array.isArray(keyChannels!) && keyChannels.length > 0 return (
) } StyledAccidentalKey.propTypes = keyPropTypes export default StyledAccidentalKey