react-smartphone
Version:

19 lines • 507 B
TypeScript
import React from 'react';
interface Props {
height?: string;
width?: string;
caseColor?: string;
detailsColor?: string;
cameraColor?: string;
shadowColor?: string;
volumeButtonsColor?: string;
text?: string;
content?: JSX.Element;
children?: JSX.Element | string;
screenColor?: string;
onHomeButtonPress?: () => void;
onVolumeButtonPress?: () => void;
}
declare const Phone: React.FC<Props>;
export default Phone;
//# sourceMappingURL=Smartphone.d.ts.map