import React from 'react'; interface SizeProps { width?: number; height?: number; } const DeixLogo: React.FC = ({ width = 14, height = 14 }) => { return ( ); }; export default DeixLogo;