File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const Select: React.FC<SelectProps> = ({
1818 } : SelectProps ) => {
1919 return (
2020 < StyledSelect
21- InputWidth = { styleWidth || '23.75rem' }
21+ SelectWidth = { styleWidth || '23.75rem' }
2222 Color = { color || 'var(--black)' }
2323 Size = { Size || '1.5rem' }
2424 >
Original file line number Diff line number Diff line change 11import styled from 'styled-components' ;
22
33interface Props {
4- InputWidth : string ;
4+ SelectWidth : string ;
55 Color : string ;
66 Size : string ;
77 }
@@ -10,7 +10,7 @@ export const StyledSelect = styled.div<Props>`
1010 display: flex;
1111 flex-direction: column;
1212
13- width: ${ props => props . InputWidth || '23.75rem' } ;
13+ width: ${ props => props . SelectWidth || '23.75rem' } ;
1414
1515 margin: 0;
1616
@@ -30,7 +30,7 @@ export const StyledSelect = styled.div<Props>`
3030 border: 0;
3131 border-radius: 1.25rem;
3232
33- width: ${ props => props . InputWidth || '23.75rem' }
33+ width: ${ props => props . SelectWidth || '23.75rem' }
3434 }
3535
3636` ;
You can’t perform that action at this time.
0 commit comments