import { warnUnsupported } from '../base/warn-unsupported.js';
import { mapTextProps } from './map.js';
export function Text({ children, ...rest }) {
    const { mapped, unsupported } = mapTextProps(rest);
    warnUnsupported('Text', unsupported);
    return <text {...mapped}>{children}</text>;
}
//# sourceMappingURL=index.jsx.map