与 Typescript 一起使用的 ThemeProvide 出现错误

ThemeProvide used with Typescript is giving an error

我要创建组件

const StyledDiv = styled.div`
width: 10rem;
height: 3rem;
border-radius: 0.2rem;
background-color: ${({ theme, colorVariant, colorType }) => theme.colors[colorType]. 
 [colorVariant]}
`;

但是显示错误

属性 'colorVariant' 在类型 'Pick<DetailedHTMLProps<HTMLAttributes, HTMLDivElement>, "slot" | "style" | "title" | ... 252 more ... | "css"> & { ...; } & ThemeProps<...>' 上不存在。

这是我设置的主题

export default {
  'colors' : {
    'blue' : {
      '100' : '#232f3e',
      '200' : '#233d51',
      '300' : '#006170',
      '400' : '#008296',
      '450' : '#008091',
      '500' : '#d4e4e6',
      '600' : '#e5f2f3',
    },
    'grey' : {
      '600' : '#8ca1a3',
      '700' : '#768283',
      '800' : '#e7e9e9',
      '900' : '#ffffff',
    },
    'red' : {
      '1000' : '#b40909',
    },
    'green' : {
      '1100' : '#417505',
    },
    'yellow' : {
      '1200' : '#f5a623',
    }
  }
};

我发现的一种方法是


interface IStyledColorBar {
  colorVariant: string,
  colorType: string,
};

type StyledProps<T = {}> = React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement> & Partial<T>, HTMLDivElement>;

const StyledDiv = styled.div <StyledProps <IStyledColorBar>>`
  width: 10rem;
  height: 3rem;
  border-radius: 0.2rem;
  background-color: ${({ theme, colorVariant, colorType }) => theme.colors[colorType][colorVariant]}
`;

我从 https://github.com/emotion-js/emotion/issues/802#issuecomment-444181912

您在使用 styled-components 吗?如果是这样, div 方法似乎也将参数作为扩展道具来满足您的需要。这就是我的意思:

const StyledDiv = styled.div<{ colorVariant: string, colorType: string }>`
  width: 10rem;
  height: 3rem;
  border-radius: 0.2rem;
  background-color: ${({ theme, colorVariant, colorType }) => theme.colors[colorType]. 
   [colorVariant]}
`;