import { color } from 'framer-motion' import React from 'react' interface SlackIconProps { width?: number | string height?: number | string className?: string injectedColor?: string } /** @deprecated Use icons from icons-v2-generated instead. */ export function SlackIcon({ width = 24, height = 24, className = "text-current" , injectedColor }: SlackIconProps) { const redColor = injectedColor || "#E01E5A"; const blueColor = injectedColor || "#36C5F0"; const greenColor = injectedColor || "#2EB67D"; const yellowColor = injectedColor || "#ECB22E"; return ( ) }