Adding info on hover over svg feature and CHA2_DS2-VASc calculator

This commit is contained in:
2026-04-03 14:53:31 +05:30
parent 66d178472a
commit 0b913dcf67
12 changed files with 295 additions and 16 deletions

View File

@@ -4,18 +4,20 @@ const parameters : Input[] = [
{
id:"sbp",
name:"Systolic Blood Pressure",
placeholder:"Enter the Systolic Blood Pressure in mmHg",
placeholder:"Enter the Systolic Blood Pressure",
type:"number",
required:true,
min:0
min:0,
defaultUnit:"mmHg",
},
{
id:"dbp",
name:"Diastolic Blood Pressure",
placeholder:"Enter the Disatolic Blood Pressure in mmHg",
placeholder:"Enter the Disatolic Blood Pressure",
type:"number",
required:true,
min:0
min:0,
defaultUnit:"mmHg"
}
]