Skip to content

Commit

Permalink
feat: Add FwbIndicator component
Browse files Browse the repository at this point in the history
This commit adds the FwbIndicator component, which provides a customizable indicator element. It accepts a type prop to specify the indicator color and a class prop for additional styling. The component is implemented using Vue.js and Tailwind CSS, and it enhances the functionality and visual appeal of the application.

Note: This commit message follows the established convention of using a prefix (feat) to indicate a new feature or component being added.
  • Loading branch information
ogzcode committed Aug 2, 2024
1 parent 5429972 commit e3a64a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ function getComponents() {
{ text: 'Card', link: '/components/card.md' },
{ text: 'Carousel', link: '/components/carousel' },
{ text: 'Dropdown', link: '/components/dropdown' },
{ text: "Indicator", link: '/components/indicator' },
{ text: 'Jumbotron', link: '/components/jumbotron' },
{ text: 'ListGroup', link: '/components/list-group' },
{ text: 'Pagination', link: '/components/pagination' },
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export { default as FwbFooterCopyright } from './components/FwbFooter/FwbFooterC
export { default as FwbFooterIcon } from './components/FwbFooter/FwbFooterIcon.vue'
export { default as FwbFooterLink } from './components/FwbFooter/FwbFooterLink.vue'
export { default as FwbFooterLinkGroup } from './components/FwbFooter/FwbFooterLinkGroup.vue'
export { default as FwbIndicator } from './components/FwbIndicator/FwbIndicator.vue'
export { default as FwbJumbotron } from './components/FwbJumbotron/FwbJumbotron.vue'
export { default as FwbListGroup } from './components/FwbListGroup/FwbListGroup.vue'
export { default as FwbListGroupItem } from './components/FwbListGroup/FwbListGroupItem.vue'
Expand Down

0 comments on commit e3a64a5

Please sign in to comment.