musicgpt 0.3.27

Generate music based on natural language prompts using LLMs running locally
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React, { HTMLProps } from 'react';

interface UserQuestionProps extends HTMLProps<HTMLDivElement> {
  text: string;
}

const UserQuestion: React.FC<UserQuestionProps> = ({ text, className = '' }) => {
  return (
    <div className={`p-4 rounded-b-lg rounded-tl-lg bg-[var(--card-background-color)] ${className}`}>
      <p>{text}</p>
    </div>
  );
};

export default UserQuestion;