This commit is contained in:
Thomas Roberts 2023-10-25 09:53:24 +01:00 committed by GitHub
parent d71e0274f3
commit e6272d0aee
5 changed files with 4 additions and 2 deletions

View File

@ -30,5 +30,4 @@ export * from './sort-select';
export * from './state-input';
export * from './summary';
export * from './tabs';
export * from './textarea';
export * from './title';

View File

@ -4,7 +4,7 @@
import { __ } from '@wordpress/i18n';
import { useState } from '@wordpress/element';
import { CheckboxControl } from '@woocommerce/blocks-checkout';
import { Textarea } from '@woocommerce/base-components/textarea';
import { Textarea } from '@woocommerce/blocks-components';
interface CheckoutOrderNotesProps {
disabled: boolean;

View File

@ -11,3 +11,4 @@ export {
export type { RadioControlOption as RadioControlOptionType } from './radio-control/types';
export { default as RadioControlAccordion } from './radio-control-accordion';
export { default as Spinner } from './spinner';
export { default as Textarea } from './textarea';

View File

@ -34,3 +34,5 @@ export const Textarea = ( {
value={ value }
/>
);
export default Textarea;