Skip to content

Commit

Permalink
Merge pull request #20 from fortanix/fix/input
Browse files Browse the repository at this point in the history
Removes extraneous caret from Input control
  • Loading branch information
mkrause authored Nov 15, 2024
2 parents be28eee + 2ece714 commit c5bef80
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 c5bef80

Please sign in to comment.