ref(TS) Require interfaces to start with I (#12424)

This commit is contained in:
Robert Pintilii
2022-10-20 12:11:27 +03:00
committed by GitHub
parent 10d202439b
commit 2938d1f2dc
197 changed files with 971 additions and 954 deletions

View File

@@ -7,7 +7,7 @@ import Icon from '../../../icons/components/Icon';
import { IconArrowDown } from '../../../icons/svg';
import { withPixelLineHeight } from '../../../styles/functions.web';
interface SelectProps {
interface ISelectProps {
/**
* Helper text to be displayed below the select.
@@ -144,7 +144,7 @@ const Select = ({
label,
onChange,
options,
value }: SelectProps) => {
value }: ISelectProps) => {
const { classes, cx, theme } = useStyles();
const isMobile = isMobileBrowser();