Skip to content

Commit

Permalink
Removes extraneous caret from Input control
Browse files Browse the repository at this point in the history
  • Loading branch information
nighto committed Nov 15, 2024
1 parent be28eee commit 2ece714
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/components/forms/controls/Input/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
import { classNames as cx, type ComponentProps } from '../../../../util/componentUtil.ts';
import * as React from 'react';

import { Icon } from '../../../graphics/Icon/Icon.tsx';

import cl from './Input.module.scss';


Expand Down Expand Up @@ -38,7 +36,6 @@ export const Input = ({ unstyled = false, type = 'text', ...propsRest }: InputPr
[cl['bk-input']]: !unstyled,
}, propsRest.className)}
/>
<Icon icon="caret-down"/>
</div>
);
};

0 comments on commit 2ece714

Please sign in to comment.