2024-03-22 11:45:52 +01:00
|
|
|
import { JSXElement } from "solid-js";
|
|
|
|
|
|
|
|
import { RemovePostIcon } from "../../Util/Icons";
|
|
|
|
|
2024-03-22 20:39:34 +01:00
|
|
|
export default function RemovePostButton(): JSXElement {
|
2024-03-22 11:45:52 +01:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div class="flex p-1">
|
|
|
|
<button
|
|
|
|
class="rounded-base btn btn-xs hover:border-primary"
|
|
|
|
aria-label="Show sign of engagement"
|
|
|
|
>
|
|
|
|
<RemovePostIcon />
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|