IWidgetTitleBarProps
Definition
interface IWidgetTitleBarProps {
/**
* The title to show for the widget
*/
title: string;
/**
* The url for an icon to be shown next to the title on the top left corner.
*/
icon?: string;
className?: string
children?: React.ReactNode
}Usage
import { IWidgetTitleBarProps } from 'uxp/components';Last updated