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

18 lines
254 B
Ruby

class Account::OtherAsset < ApplicationRecord
include Accountable
def icon
"icon-bank-accounts.svg"
end
def type_name
"Other Asset"
end
def color
{
background: "bg-[#EDF7F4]",
text: "text-[#1BD5A1]"
}
end
end