Skip to content

Commit

Permalink
fix styles module import
Browse files Browse the repository at this point in the history
  • Loading branch information
Boltman92 committed Sep 26, 2023
1 parent 5c41368 commit 8a84658
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/templates/SeedPhraseInput/SeedLengthSelect.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React, { FC, useCallback, useEffect, useRef, useState } from 'react';

import './seedLength.module.css';

import classNames from 'clsx';

import { ReactComponent as SelectArrowDownIcon } from 'app/icons/select-arrow-down.svg';
import { t } from 'lib/i18n';

import styles from './seedLength.module.css';

interface SeedLengthSelectProps {
options: Array<string>;
currentOption: string;
Expand Down Expand Up @@ -79,7 +79,7 @@ export const SeedLengthSelect: FC<SeedLengthSelectProps> = ({ options, currentOp
value={option}
checked={selectedOption === option}
onChange={e => setSelectedOption(e.target.value)}
className="input"
className={styles.input}
/>
<span className="text-sm">{option}</span>
</label>
Expand Down

0 comments on commit 8a84658

Please sign in to comment.