mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 15:36:59 +01:00
11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
|
import { enabled } from 'react-native-privacy-snapshot';
|
||
|
export default class Privacy {
|
||
|
static enableBlur() {
|
||
|
enabled(true);
|
||
|
}
|
||
|
|
||
|
static disableBlur() {
|
||
|
enabled(false);
|
||
|
}
|
||
|
}
|