【发布时间】:2022-01-25 16:52:34
【问题描述】:
我尝试使用覆盖“!”但是还是不行,有没有办法给它设置样式?我在网上到处看都帮不上忙。
import React from 'react';
import styled from 'styled-components';
import SearchIcon from '@material-ui/icons/Search';
export default function Search() {
return (
<Form>
<SearchBar
type='text'
placeholder='Have a question? Search for answers…'
/>
<MagnifyIcon />
</Form>
);
}
const SearchBar = styled.input``;
const Form = styled.form``;
const MagnifyIcon = styled(SearchIcon)`
background-color: 'blue';
`;
【问题讨论】:
标签: reactjs material-ui styled-components