mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
18 lines
248 B
Ruby
18 lines
248 B
Ruby
class Account::Credit < ApplicationRecord
|
|
include Accountable
|
|
|
|
def icon
|
|
"icon-credit-card.svg"
|
|
end
|
|
|
|
def type_name
|
|
"Credit Card"
|
|
end
|
|
|
|
def color
|
|
{
|
|
background: "bg-[#E6F6FA]",
|
|
text: "text-[#189FC7]"
|
|
}
|
|
end
|
|
end
|