This commit is contained in:
2026-07-08 09:05:15 +00:00
parent 4f3b805b8c
commit 3f507e1bee
36 changed files with 1910 additions and 603 deletions

View File

@@ -0,0 +1,9 @@
export default function Button({ text, link, style = 'style4', rounded, icon = 'far fa-arrow-right' }) {
return (
<div className="btn-wrapper">
<a className={`th-btn th_btn${style ? ' ' + style : ''}${rounded ? ' rounded-' + rounded : ''}`} href={link}>
{text}{icon && <i className={`${icon} ms-2`}></i>}
</a>
</div>
)
}