closed-captions
design • interface • vector
General
react
import React from 'react';
export const ClosedCaptions = (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 10 9.5 a 2.5 2.5 0 0 0 -3.5 0 v 3 a 2.5 2.5 0 0 0 3.5 0 M 17.5 9.5 a 2.5 2.5 0 0 0 -3.5 0 v 3 a 2.5 2.5 0 0 0 3.5 0" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
</svg>
);
export default ClosedCaptions;