Replaced custom AI-generated icons with standard Heroicons for a more professional appearance on the home page. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
579 B
TypeScript
Executable file
8 lines
579 B
TypeScript
Executable file
import React from 'react';
|
|
|
|
// Device phone/tablet icon - Heroicons "device-phone-mobile" (outline) - represents channels/platforms
|
|
export const ChannelIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" {...props}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M10.5 1.5H8.25A2.25 2.25 0 006 3.75v16.5a2.25 2.25 0 002.25 2.25h7.5A2.25 2.25 0 0018 20.25V3.75a2.25 2.25 0 00-2.25-2.25H13.5m-3 0V3h3V1.5m-3 0h3m-3 18.75h3" />
|
|
</svg>
|
|
);
|