我似乎無法使用樣式組件設計PrimeReact組件。PrimeReact和樣式組件
鑑於下面的代碼來呈現一個InputText,我的目的是改變它的寬度。但它不起作用。
import styled from "styled-components";
import {InputText} from 'primereact/components/inputtext/InputText';
class Component extends React.Component {
render() {
return (
<InputText/>
)
}
const ComponentView = styled(Component)`
.ui-inputtext {
width: 1000px;
}
`;