mirror of
https://github.com/we-promise/sure.git
synced 2026-04-18 19:44:09 +00:00
19 lines
248 B
Ruby
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
|