Skip to content

Commit

Permalink
fix: resolve comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Misael840 committed Sep 20, 2024
1 parent fb09832 commit 72ee5c9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/modals/aside-modal.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The code snippet below shows how to use the AsideModal component:
<AsideModal
title="Component Aside Modal"
open={true}
open
onClose={() => function('function to close the aside modal')}
/>
`}/>
Expand All @@ -63,7 +63,7 @@ With the prop <TagDocs text='titleVariant' /> you can customize the size of the
<AsideModal
variant='h4'
title="Component Aside Modal"
open={true}
open
onClose={() => function('function to close the aside modal')}
/>
`}/>
Expand All @@ -87,7 +87,7 @@ With the prop <TagDocs text='position' /> you can choose on which side of the sc
<AsideModal
position='right'
title="Component Aside Modal"
open={true}
open
onClose={() => function('function to close the aside modal')}
/>
`}/>
Expand All @@ -104,7 +104,7 @@ With the prop <TagDocs text='position' /> you can choose on which side of the sc
<AsideModal
position='left'
title="Component Aside Modal"
open={true}
open
onClose={() => function('function to close the aside modal')}
/>
`}/>
Expand All @@ -125,7 +125,7 @@ With the prop <TagDocs text='disableEscapeKeyDown' /> you can disable the closin
<AsideModal
disableEscapeKeyDown
title="Component Aside Modal"
open={true}
open
onClose={() => function('function to close the aside modal')}
/>
`}/>
Expand All @@ -149,7 +149,7 @@ With the prop <TagDocs text='IsStickyTitle' /> you can make the title sticky
<AsideModal
title="Component Aside Modal"
open={true}
open
isStickyTitle
onClose={() => function('function to close the aside modal')}
/>
Expand Down

0 comments on commit 72ee5c9

Please sign in to comment.