elk/components/publish/PublishWidget.vue

15 lines
312 B
Vue
Raw Normal View History

2022-11-16 21:27:02 +00:00
<script setup lang="ts">
</script>
<template>
<div flex flex-col gap-4>
<textarea p2 border-rounded w-full h-40 color-black placeholder="What's on your mind?" />
<div flex justify-end>
<button h-9 w-22 bg-primary border-rounded>
Publish!
</button>
</div>
</div>
</template>