import React from "react"; import {TextField} from "spotlight/admin-common/components/fields/TextField"; import {FeedEditorField} from "spotlight/feed-editor/components/core/FeedEditorField"; export type Props = { disabled: boolean; } export function LoadMoreButtonTextField({disabled}: Props) { return ( {props => } ); }