How to create oval shape button in react js?

Hi Friends πŸ‘‹,

Welcome To aHoisting!

To create oval shape button in react js, you can set clip-path: ellipse(50% 15% at 50% 50%); in .oval-button. It will create oval shape button in react js.

Today, I am going to show you, how to create oval shape button in react js.

Table of contents

  • Install and create a new React app.
  • Import react component.
  • Create a Component.

Let’s start with the first step.

Step 1: Install and create a new React app.

First you have to install the React project. You should use create-react-app command to create a new React project.

npx create-react-app my-app
cd my-app
npm start

Step 2: Import react component.

After installing, you have to import your React component.

import React from "react";
import "./App.css"; // Import CSS for styling

Step 3: Create a Component.

You can use className="oval-button" to create oval shape button in react js.

<button className="oval-button" onClick={onClick}>
  {text}
</button>

Create oval shape button example.

The below code is an example of a React. You have to import react and set clip-path: ellipse(50% 15% at 50% 50%); in .oval-button to create oval shape button in react js.

App.js

import React from "react";
import "./App.css"; // Import CSS for styling

const OvalButton = ({ text, onClick }) => {
  return (
    <button className="oval-button" onClick={onClick}>
      {text}
    </button>
  );
};

export default function App() {
  return (
    <div className="App">
      <OvalButton
        text="Click Me"
        onClick={() => alert("Button clicked!")}
      />
    </div>
  );
}

App.css

.oval-button {
  color: white;            
  font-size: 16px;          
  cursor: pointer;           
  background-color:#0056b3;;
  clip-path: ellipse(50% 15% at 50% 50%);
  width: 100px;
  height: 100px;
}

.oval-button:hover {
  background-color: #0056b3; 
}   

In the above code example, I have used the clip-path: ellipse(50% 15% at 50% 50%); to create oval shape button in react js.

Check the output of the above code.

React, create, oval, shape, button

All the best πŸ‘