Skip to content

Commit

Permalink
Update button group doc
Browse files Browse the repository at this point in the history
  • Loading branch information
gucal committed Mar 21, 2024
1 parent 0e160be commit 7741320
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { DocSectionText } from '@/components/doc/common/docsectiontext';
import { Button } from '@/components/lib/button/Button';
import { ButtonGroup } from '@/components/lib/buttongroup/ButtonGroup';

export function ButtonSetDoc(props) {
export function ButtonGroupDoc(props) {
const code = {
basic: `
<ButtonGroup>
Expand Down
8 changes: 4 additions & 4 deletions pages/button/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AccessibilityDoc } from '@/components/doc/button/accessibilitydoc';
import { BadgesDoc } from '@/components/doc/button/badgesdoc';
import { BasicDoc } from '@/components/doc/button/basicdoc';
import { ButtonSetDoc } from '@/components/doc/button/buttonsetdoc';
import { ButtonGroupDoc } from '@/components/doc/button/buttongroupdoc';
import { DisabledDoc } from '@/components/doc/button/disableddoc';
import { IconOnlyDoc } from '@/components/doc/button/icononlydoc';
import { IconsDoc } from '@/components/doc/button/iconsdoc';
Expand Down Expand Up @@ -96,9 +96,9 @@ const ButtonDemo = () => {
component: BadgesDoc
},
{
id: 'buttonset',
label: 'Button Set',
component: ButtonSetDoc
id: 'buttongroup',
label: 'Button Group',
component: ButtonGroupDoc
},
{
id: 'sizes',
Expand Down

0 comments on commit 7741320

Please sign in to comment.