decentraland-ui
Version:
Decentraland's UI components and styles
11 lines (10 loc) • 357 B
TypeScript
import React from 'react';
import { CampaignOutOfStockNotification } from '../../types';
declare type CampaignNameProps = {
metadata: CampaignOutOfStockNotification['metadata'];
};
/**
* @deprecated Should start using the same component migrated to UI2.
*/
export default function CampaignName(props: CampaignNameProps): React.JSX.Element;
export {};