Skip to content

Commit 8e8fc1b

Browse files
author
Achintha Isuru
committed
chore(react): added scss file for the autocomplete component
1 parent bb00ba9 commit 8e8fc1b

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

packages/react/src/components/Autocomplete/Autocomplete.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import clsx from 'clsx';
2121
import {forwardRef, ForwardRefExoticComponent, ReactElement, MutableRefObject} from 'react';
2222
import {WithWrapperProps} from '../../models';
2323
import {composeComponentDisplayName} from '../../utils';
24+
import './autocomplete.scss';
2425

2526
export type AutocompleteProps<T> = MuiAutocompleteProps<T, boolean, boolean, boolean>;
2627

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/**
2+
* Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com). All Rights Reserved.
3+
*
4+
* WSO2 LLC. licenses this file to you under the Apache License,
5+
* Version 2.0 (the "License"); you may not use this file except
6+
* in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing,
12+
* software distributed under the License is distributed on an
13+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
* KIND, either express or implied. See the License for the
15+
* specific language governing permissions and limitations
16+
* under the License.
17+
*/
18+
19+
.oxygen-autocomplete {
20+
padding-top: 16px;
21+
padding-bottom: 16px;
22+
}

0 commit comments

Comments
 (0)