Fix style spacing

This commit is contained in:
aarongrider 2021-02-07 20:42:07 -08:00
parent 5c3341d228
commit e2fa04b913
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ function Camera(props, ref) {
return (
<NativeCamera
style={{minWidth: 100, minHeight: 100}}
style={{ minWidth: 100, minHeight: 100 }}
flashMode={props.flashMode}
ref={nativeRef}
{...transformedProps}

View File

@ -23,7 +23,7 @@ function Camera(props, ref) {
const transformedProps = _.cloneDeep(props);
_.update(transformedProps, 'cameraOptions.ratioOverlayColor', (c) => processColor(c));
return <NativeCamera style={{minWidth: 100, minHeight: 100}} ref={nativeRef} {...transformedProps} />;
return <NativeCamera style={{ minWidth: 100, minHeight: 100 }} ref={nativeRef} {...transformedProps} />;
}
Camera.defaultProps = {