13 lines
216 B
TypeScript
13 lines
216 B
TypeScript
import styled from "styled-components";
|
|
|
|
const StyledSelect = styled.select`
|
|
padding: 0.25rem;
|
|
margin: 0.5rem;
|
|
`;
|
|
|
|
const SelectWrapper = styled.div`
|
|
padding: 0.5rem;
|
|
`;
|
|
|
|
export { StyledSelect, SelectWrapper };
|