Skip to content

Commit

Permalink
Merge pull request #852 from hit-pay/fix-flag-lib
Browse files Browse the repository at this point in the history
fix: fixed flags lib in orchid
  • Loading branch information
kewcoder authored Dec 10, 2024
2 parents a71df16 + 56a9852 commit 3ab595f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@orchidui/vue",
"description": "Orchid UI , Dashboard Ui Library Vue 3 tailwind css",
"version": "0.5.532",
"version": "0.5.533",
"type": "module",
"scripts": {
"build": "vite build",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup>
import { Skeleton, Chip, Button } from '@/orchidui'
import { Skeleton, Chip, Button, Icon } from '@/orchidui'
defineProps({
isActive: Boolean,
Expand Down Expand Up @@ -41,7 +41,7 @@ defineProps({
v-if="countryIso"
class="flex justify-center items-center w-[38px] h-[38px] shrink-0 rounded-full bg-oc-gray-100"
>
<div class="fi !w-[24px] !h-[16px] !rounded-[1px]" :class="`fi-${countryIso}`" />
<Icon class="!w-[24px] !h-[16px] !rounded-[1px]" :name="`flags/${countryIso.toUpperCase()}`" />
</div>
{{ content }}
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ const args = {
{
title: 'HitPay Balance',
content: 'SGD 1,110.00',
value: 'hitpay'
value: 'hitpay',
countryIso: 'US'
},
{
title: 'Card Balance',
Expand Down

0 comments on commit 3ab595f

Please sign in to comment.