audio-description
design • interface • vector
General
react
import React from 'react';
export const AudioDescription = (props) => (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
<rect x="3" y="5" width="18" height="14" rx="3" ry="3" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M 7 15 L 9 9 L 11 15 M 7.5 13.5 h 3 M 14 9 h 1.5 a 3 3 0 0 1 0 6 H 14 V 9 Z" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
</svg>
);
export default AudioDescription;