Current section
Files
Jump to
Current section
Files
lib/components/badge.ex
defmodule LiveAntd.Components.Badge do
@moduledoc """
Small numerical value or status descriptor for UI elements.
"""
use Surface.Component
prop(count, :string)
def render(assigns) do
~H"""
<span class="ant-badge">
<slot/>
<sup
data-show="true"
class="ant-scroll-number ant-badge-count"
title="{{ @count }}"
>
{{ @count }}
</sup>
</span>
"""
end
end