import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const Sound48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M27.5 10a1.5 1.5 0 0 0-2.332-1.248L13.546 16.5H6A1.5 1.5 0 0 0 4.5 18v12A1.5 1.5 0 0 0 6 31.5h7.546l11.622 7.748A1.5 1.5 0 0 0 27.5 38V10Zm-12 8.803 9-6v22.394l-9-6V18.803Zm-3 .697h-5v9h5v-9Zm19.705-2.772a1.5 1.5 0 0 1 2.067.477c1.372 2.195 2.103 4.467 2.103 6.795 0 2.328-.731 4.6-2.103 6.795a1.5 1.5 0 1 1-2.544-1.59c1.128-1.805 1.647-3.533 1.647-5.205 0-1.672-.519-3.4-1.647-5.205a1.5 1.5 0 0 1 .477-2.067Zm7.016-4.6a1.5 1.5 0 0 0-2.442 1.744c4.628 6.478 4.628 13.778 0 20.256a1.5 1.5 0 0 0 2.442 1.744c5.372-7.522 5.372-16.222 0-23.744Z"/>
</svg>
)
export default Sound48