Rounded Corner is a Google Material Symbol from the Actions category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.
Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.
GradeOptical size
Outlined, unfilled, weight 400
rounded_corner_outlined_fill0_wght400.svg
Rounded Corner icon in HTML
Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.
// With the font from the HTML tab:
export function RoundedCornerIcon() {
return (
<span className="material-symbols-outlined">
rounded_corner
</span>
);
}
// Or as an SVG component (Vite + vite-plugin-svgr) instead:
// npm install @material-symbols/svg-400
// import RoundedCornerIcon from "@material-symbols/svg-400/outlined/rounded_corner.svg?react";
Rounded Corner icon in MUI
The @mui/icons-material component (from the older Material Icons set, so no weight or grade):
<!-- With the font from the HTML tab -->
<template>
<span class="material-symbols-outlined">rounded_corner</span>
</template>
<!-- Or as an SVG component (Vite + vite-svg-loader):
npm install @material-symbols/svg-400
import RoundedCornerIcon from "@material-symbols/svg-400/outlined/rounded_corner.svg?component"; -->
Rounded Corner icon in Angular
With Angular Material and the font from the HTML tab:
Uses the community material_symbols_icons package.
flutter pub add material_symbols_icons
import 'package:material_symbols_icons/symbols.dart';
Icon(Symbols.rounded_corner, fill: 0, weight: 400, grade: 0, opticalSize: 24)
// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.rounded_corner_outlined)
Rounded Corner icon in Android
A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:
npm install @material-symbols/svg-400
import icon from "@material-symbols/svg-400/outlined/rounded_corner.svg";
<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.47.5/outlined/rounded_corner.svg" width="24" height="24" alt="Rounded Corner">
Rounded Corner icon in Power Apps
Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.