[READ-ONLY] a fast, modern browser for the npm registry
at main 14 lines 350 B view raw
1<script setup lang="ts"> 2const props = defineProps<{ 3 as?: string | Component 4}>() 5</script> 6 7<template> 8 <component 9 :is="props.as || 'div'" 10 class="flex items-center shrink-0 ms-auto [&>*:not(:first-child)]:rounded-s-none [&>*:not(:first-child)]:border-s-0 [&>*:not(:last-child)]:rounded-e-none" 11 > 12 <slot /> 13 </component> 14</template>