15 lines
426 B
JavaScript
Executable File
15 lines
426 B
JavaScript
Executable File
export default function ColorPicker(){
|
|
return (
|
|
<div className="flex pt-4">
|
|
<button className="w-10 h-10 ml-2 rounded bg-red-400 outline outline-gray-400 shadow-lg shadow-red-400">
|
|
|
|
</button>
|
|
<button className="w-10 h-10 mx-2 rounded bg-red-400">
|
|
|
|
</button>
|
|
<button className="w-10 h-10 mx-2 rounded bg-red-400">
|
|
|
|
</button>
|
|
</div>
|
|
)
|
|
} |