mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
feat: add input group prepend component.
This commit is contained in:
9
client/src/components/Forms/InputPrependText.js
Normal file
9
client/src/components/Forms/InputPrependText.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
|
||||
export default function InputPrependText({ text, children }) {
|
||||
return (
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">{text}</span>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user