botframework-webchat-component
Version:
React component of botframework-webchat
27 lines (22 loc) • 577 B
JavaScript
import PropTypes from 'prop-types';
import React from 'react';
const CollapseIcon = ({ className }) => (
<svg
className={(className || '') + ''}
focusable={false}
height="9"
role="presentation"
viewBox="0 0 16 9"
width="16"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M15.2734 8.97656L8 1.71094L0.726563 8.97656L0.0234375 8.27344L8 0.289062L15.9766 8.27344L15.2734 8.97656Z" />
</svg>
);
CollapseIcon.defaultProps = {
className: undefined
};
CollapseIcon.propTypes = {
className: PropTypes.string
};
export default CollapseIcon;