19 lines
402 B
TypeScript
19 lines
402 B
TypeScript
'use client';
|
|
|
|
import { Select } from '../ui/inputs';
|
|
import Modal from '../ui/modal';
|
|
|
|
type BubbleSelectDialogProps = {};
|
|
export default function BubbleSelectDialog(props: BubbleSelectDialogProps) {
|
|
return (
|
|
<Modal
|
|
title="Chat Bubble"
|
|
trigger={
|
|
<Select.View icon={'/character/chat_bubble.svg'} text="Chat Bubble" />
|
|
}
|
|
>
|
|
BubbleSelectDialog
|
|
</Modal>
|
|
);
|
|
}
|