import * as React from "react"; type Props = { size?: number; fill?: string; className?: string; }; function SlackLogo({ size = 34, fill = "#FFF", className }: Props) { return ( ); } export default SlackLogo;