Skip to content

Commit

Permalink
add: bottom bar
Browse files Browse the repository at this point in the history
  • Loading branch information
nirbhayel committed Nov 15, 2024
1 parent 115b5a4 commit ab1550b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions modules/settings/assets/js/components/bottom-bar/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import Box from '@elementor/ui/Box';
import Button from '@elementor/ui/Button';

export const BottomBar = () => {
return (
<Box display="flex"
justifyContent="end"
p={ 2 }
width="100%">
<Button variant="contained" color="info">Save Changes</Button>
</Box>
);
};

0 comments on commit ab1550b

Please sign in to comment.