remove extra divider

This commit is contained in:
Daniel Lenrd
2023-11-12 01:17:28 +09:00
committed by GitHub
parent 4429301f94
commit e7faaa4b4d
+18 -20
View File
@@ -97,26 +97,24 @@ const Actions = (props, context) => {
onClick={() => act('scandocument')}
/>
{!!issilicon && (
<div>
<Button
fluid
icon="file"
color="green"
float="center"
textAlign="center"
content="Print Text"
onClick={() => act('ai_text')}
/>
<Button
fluid
icon="image"
color="green"
float="center"
textAlign="center"
content="Print Image"
onClick={() => act('ai_pic')}
/>
</div>
<Button
fluid
icon="file"
color="green"
float="center"
textAlign="center"
content="Print Text"
onClick={() => act('ai_text')}
/>
<Button
fluid
icon="image"
color="green"
float="center"
textAlign="center"
content="Print Image"
onClick={() => act('ai_pic')}
/>
)}
</Fragment>
);