Files
sure/app/models/account/credit.rb
2024-02-03 02:50:09 +00:00

19 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