Spaces:
Sleeping
Sleeping
File size: 782 Bytes
01d5a5d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import React from 'react';
import classNames from 'classnames';
interface NetworkIconProps {
className?: string;
}
const NetworkIcon: React.FC<NetworkIconProps> = ({ className }) => {
return (
<svg
className={classNames('w-4 h-4 flex-shrink-0', className)}
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
/>
</svg>
);
};
export default NetworkIcon;
|