mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
22 lines
386 B
TypeScript
22 lines
386 B
TypeScript
import React from 'react';
|
|
|
|
interface PrivacyComponent extends React.FC {
|
|
enableBlur: () => void;
|
|
disableBlur: () => void;
|
|
}
|
|
|
|
const Privacy: PrivacyComponent = () => {
|
|
// Define Privacy's behavior
|
|
return null;
|
|
};
|
|
|
|
Privacy.enableBlur = () => {
|
|
// Define the enableBlur behavior
|
|
};
|
|
|
|
Privacy.disableBlur = () => {
|
|
// Define the disableBlur behavior
|
|
};
|
|
|
|
export default Privacy;
|