UNPKG

@ledgerhq/live-common

Version:
10 lines 360 B
import React, { ReactNode } from "react"; import type { FeatureId } from "@ledgerhq/types-live"; type Props = { featureId: FeatureId; fallback?: ReactNode; children?: ReactNode; }; declare const FeatureToggle: ({ featureId, fallback, children }: Props) => React.JSX.Element; export default FeatureToggle; //# sourceMappingURL=FeatureToggle.d.ts.map