mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
11 lines
216 B
TypeScript
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>
|
|
);
|
|
}
|