import React from 'react'; interface IconKeyProps { className?: string; fill?: boolean; } const IconKey: React.FC = ({ className = 'w-5 h-5', fill = false }) => ( ); export default IconKey;