New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@dubai-design-system/components-react

Package Overview
Dependencies
Maintainers
3
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dubai-design-system/components-react

React package for Digital Dubai Design System, providing reusable UI components compatible with React applications.

latest
npmnpm
Version
3.12.10
Version published
Maintainers
3
Created
Source

dda-logo

DDA with React

This is a step-by-step guide to use the DDA components in React.

Setup

First, install the package:

npm i @dubai-design-system/components-react

Next, add the material-icons package which is the icon package used by DDA:

Start by adding the material-icons package inside the <head> tag

<style>
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</style>

You should now be able to use DDA components:

import React from 'react';
import { DdaButton } from "@dubai-design-system/components-react";


const App = () => (
  <div>
    <DdaButton
      button_color="default-primary"
      start_icon="sentiment_satisfied"
      end_icon="arrow_forward"
      custom_class=""
      component_mode=""
      button_id="button"
      aria_label="button"
      onClick={() => console.log('clicked')}
    >
      Button
    </DdaButton>
  </div>
);

export default App;

Change Log

Version: (3.12.3)

Change Log

Version: (alpha)

This change is not meant to be adapted on production evironments

  • Added Unified Methods and Events to Form Components (Refer to Documentation for guides on using them)

Change Log

Version: (3.11.9)

  • Revert for Search Event on Change event

Change Log

Version: (3.11.8)

  • Added Set/Reset Methods to Form Inputs

Change Log

Version: (3.11.7)

  • Support for disabling and changing icons in Quicklinks Mega Menu
  • Added Horizontal Scroll for Header Quicklinks drop downs and Mega Menu

Change Log

Version: (3.11.6) Published on: 01-september-2025

  • Header (Added Dropdown support for login button)
  • Breadcrumbs (Added Router support)
  • Sticky Bar (Added behaviour for hide on scroll)

Change Log - Breaking Change

Version: (3.11.2) Published on: 20-august-2025

  • Fix for Default Font.
  • The default font in the library is now changed to system-ui, sans-serif instead of Dubai Font.
  • The users will now need to define their own font family even if they intend to use Dubai Font.

Change Log - Breaking Change

Version: (3.11.1) Published on: 18-august-2025

  • Added fix for performance issue, seperated CSS injections from components (Kindly refer to documentation on how to import the css)
  • Accessibility Fixes

FAQs

Package last updated on 25 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts