import { css, keyframes } from "goober"; import React from "react"; const wave = keyframes` from { transform: translateY(-60%); } to { transform: translateY(60%); } `; export interface MessagingProps { className?: string; color?: string; width?: number | string; height?: number | string; style?: React.CSSProperties; duration?: string; } const Messaging: React.FC> = ({ className = "", color = "#0d6efd", width = "1rem", height = "1rem", style = {}, duration = "0.4s", ...others }) => { const resolvedWidth = typeof width === "number" ? `${width}px` : width; const resolvedHeight = typeof height === "number" ? `${height}px` : height; return (
); }; export default Messaging;