OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
swagger-ui-5.17.14
/
src
/
core
/
plugins
/
icons
/
components
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:34 AM
rwxr-xr-x
📄
arrow-down.jsx
703 bytes
08/07/2024 04:34:34 AM
rw-r--r--
📄
arrow-up.jsx
801 bytes
08/07/2024 04:34:34 AM
rw-r--r--
📄
arrow.jsx
694 bytes
08/07/2024 04:34:34 AM
rw-r--r--
📄
close.jsx
848 bytes
08/07/2024 04:34:34 AM
rw-r--r--
📄
copy.jsx
965 bytes
08/07/2024 04:34:34 AM
rw-r--r--
📄
lock.jsx
832 bytes
08/07/2024 04:34:34 AM
rw-r--r--
📄
unlock.jsx
837 bytes
08/07/2024 04:34:34 AM
rw-r--r--
Editing: arrow-down.jsx
Close
/** * @prettier */ import React from "react" import PropTypes from "prop-types" const ArrowDown = ({ className = null, width = 20, height = 20, ...rest }) => ( <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" className={className} width={width} height={height} aria-hidden="true" focusable="false" {...rest} > <path d="M17.418 6.109c.272-.268.709-.268.979 0s.271.701 0 .969l-7.908 7.83c-.27.268-.707.268-.979 0l-7.908-7.83c-.27-.268-.27-.701 0-.969.271-.268.709-.268.979 0L10 13.25l7.418-7.141z" /> </svg> ) ArrowDown.propTypes = { className: PropTypes.string, width: PropTypes.string, height: PropTypes.string, } export default ArrowDown