FrostByte/client-solid/src/Components/Buttons/RemovePostButton.tsx

19 lines
407 B
TypeScript
Raw Normal View History

import { JSXElement } from "solid-js";
import { RemovePostIcon } from "../../Util/Icons";
export default function RemovePostButton(): JSXElement {
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>
</>
);
}