system-uicons/react/src/icons/volume_0.js
2020-08-03 13:09:39 +08:00

38 lines
969 B
JavaScript

import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Volume0 = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 21 21"
fill="none"
stroke={color}
strokeWidth="1"
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<path
d="m1.5 4.5h3l5-4v14.1862915l-5-4.1862915h-3c-.55228475 0-1-.4477153-1-1v-4c0-.55228475.44771525-1 1-1z"
fill="none"
stroke={color}
transform="translate(3 3)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
)
}
)
Volume0.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
Volume0.displayName = 'Volume0'
export default Volume0