HomePaymentsNo-codeDevelopersContribute
Safepay Home PageLive DashboardTest Dashboard

APIGridCell


The APIGridCell component is designed to display API features attractively, including an icon, title, and an optional link.

Usage

APIGridCell Basic Usage
import React from 'react';
import { APIGridCell } from '~/ui/components/Home';
import { PackageIcon } from "lucide-react";

export default function App() {
  return (
    <APIGridCell
      icon={<PackageIcon />}
      title="API Access"
      link="https://example.com/api"
    />
  );
}

Rendered Example

Explore APIs

Props

NameTypeDefaultDescription
iconJSX.ElementundefinedIcon to display in the cell
titlestringundefinedTitle of the API feature
linkstringundefinedURL to link to more API details
classNamestringundefinedAdditional CSS classes for styling
smnumber6Columns span on small screens
mdnumber6Columns span on medium screens
lgnumber6Columns span on large screens
xlnumber3Columns span on extra large screens