import PropTypes from 'prop-types'; import React from 'react'; import classNames from 'classnames'; import Box from '../box/box.jsx'; import styles from './audio-trimmer.css'; import handleIcon from './icon--handle.svg'; const SelectionHandle = props => ( ); SelectionHandle.propTypes = { handleStyle: PropTypes.string, onMouseDown: PropTypes.func }; export default SelectionHandle;