import React from 'react'; type Props = { width: number; height: number; }; const AccessAccount = ({ width, height }: Props) => { return ( ); }; export default AccessAccount;