Files
bigcapital/packages/webapp/src/components/Forms/InputPrependText.tsx
2023-02-03 01:02:31 +02:00

11 lines
216 B
TypeScript

// @ts-nocheck
import React from 'react';
export function InputPrependText({ text, children }) {
return (
<div class="input-group-prepend">
<span class="input-group-text">{text}</span>
</div>
);
}