Button (Not ready)

This commit is contained in:
brausjonas
2023-04-27 16:58:50 +02:00
parent 540b15c0b0
commit 1d087d7996
5 changed files with 41 additions and 52 deletions
+15
View File
@@ -0,0 +1,15 @@
import "../App.css"
export default function Button(p) {
return (
<button className={"default-button round-border-10 font font-middle"}
style={{
paddingTop: p.PaddingY,
paddingBottom: p.PaddingY,
paddingLeft: p.PaddingX,
paddingRight: p.PaddingX
}}>{p.text}</button>
);
}