Gemini
feat: add detailed logging
01d5a5d
import React from 'react';
import classNames from 'classnames';
interface RoleplayIconProps {
className?: string;
}
const RoleplayIcon: React.FC<RoleplayIconProps> = ({ className }) => {
return (
<svg
className={classNames('w-4 h-4 flex-shrink-0', className)}
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
d="M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
/>
<path
d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
/>
</svg>
);
};
export default RoleplayIcon;