是否可以在样式化组件上的界面上添加注释/提示,如果可以,如何?

时间:2019-05-01 13:53:30

标签: reactjs typescript styled-components

我在样式化组件上有一个接口,其中包含每个属性的类型提示。如下图所示:

interface PBProps {
    color: Colours;
    bgColor: Colours;
    /** for example: 10px or 10% */
    height: string; 
    paddingLR: string;
    fontSize: string;
    width: string;
    margin: string;
    fontWeight: string;
}

当您将鼠标悬停在实际元素上的高度上时,想法是这样的。我有一个评论节目。

因此它在具有(JSX attribute) height: string的同一框中显示“例如:10px或10%”

Image Example

我知道您可以做到:

/**
 * @param {string} height // comment
 */

但是这并不能达到我希望达到的效果。这有可能吗? 2天的搜寻量已远远不够!我的Google FU不够强大!

0 个答案:

没有答案