Current section
Files
Jump to
Current section
Files
lib/stylish/external_link.ex
defmodule Stylish.ExternalLink do
use Phoenix.Component
use Phoenix.HTML
def external_link(assigns) do
icon = ~H"""
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor" phx-update="ignore">
<path d="M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z" />
<path d="M5 5a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2v-3a1 1 0 10-2 0v3H5V7h3a1 1 0 000-2H5z" />
</svg>
"""
link(icon, to: assigns[:to], class: assigns[:class])
end
end