matthew-matvei/freeman

View on GitHub
src/interfaces/props/panels/IPathPanelProps.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { IThemeableProps } from "props/common";

/** Describes the properties of a path panel component. */
interface IPathPanelProps extends IThemeableProps {

    /** The path to display. */
    path: string;
}

export default IPathPanelProps;