Helpful
    Preparing search index...

    Represents a company brand.

    interface IZBrand {
        active: boolean;
        founded?: string;
        id: string;
        name: string;
        owner?: string;
    }
    Index

    Properties

    active: boolean

    Whether the brand is still active or obsolete.

    founded?: string

    The date in time the brand was founded.

    id: string

    The id of the brand.

    These are normally found as a name of Font Awesome's brand library

    name: string

    The display friendly name of the brand.

    owner?: string

    The parent company that owns the brand.

    // The parent company of facebook is Meta.
    const facebook = { id: 'facebook', name: 'Facebook', founded: 2004, owner: 'Meta Platforms'}