10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const StyledInputContainer = styled.div`
|
|
box-sizing: border-box;
|
|
padding: ${({ theme }) => theme.spacing(1)};
|
|
width: 100%;
|
|
`;
|
|
|
|
export { StyledInputContainer as DropdownMenuInputContainer };
|