Skip to content

Commit

Permalink
feat: exports TextElement
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinperaza committed Oct 12, 2023
1 parent 52e6532 commit 5c896aa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ import 'react-native-url-polyfill/auto';
import { CardNumberElement } from './components/CardNumberElement';
import { CardVerificationCodeElement } from './components/CardVerificationCodeElement';
import { CardExpirationDateElement } from './components/CardExpirationDateElement';
import { TextElement } from './components/TextElement';
import { BasisTheoryElements } from './BasisTheoryElements';
import type { BTRef, InputBTRef } from './BaseElementTypes';

export type { BTRef, InputBTRef };
export {
BasisTheoryElements,
CardNumberElement,
CardVerificationCodeElement,
CardExpirationDateElement,
BasisTheoryElements,
TextElement,
};

0 comments on commit 5c896aa

Please sign in to comment.