1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-22 22:59:39 +02:00
Maybe/app/models/account/credit.rb
2024-02-03 02:50:09 +00:00

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