corners icon
corners from Radix Icons by WorkOS · Outline · MIT Free for personal and commercial use.
- Name
- corners
- Set
- Radix Icons
- Style
- Outline
- Viewbox
- 15×15
- License
- MIT
Use the corners icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 15 15"><path fill="currentColor" d="M2.5 9a.5.5 0 0 1 .5.5v.6c0 .428 0 .72.019.945c.017.219.05.331.09.41c.096.187.249.34.437.436c.078.04.19.072.41.09c.224.019.516.019.944.019h.6a.5.5 0 0 1 0 1h-.621c-.402 0-.734 0-1.005-.023c-.281-.022-.54-.071-.782-.195a2 2 0 0 1-.874-.874c-.124-.242-.173-.501-.196-.782A13 13 0 0 1 2 10.121V9.5a.5.5 0 0 1 .5-.5m10 0a.5.5 0 0 1 .5.5v.621c0 .402 0 .734-.023 1.005c-.022.281-.071.54-.195.782a2 2 0 0 1-.874.874c-.242.124-.501.173-.782.195c-.27.023-.603.023-1.005.023H9.5a.5.5 0 0 1 0-1h.6c.428 0 .72 0 .945-.019c.219-.018.331-.05.41-.09a1 1 0 0 0 .436-.437c.04-.078.072-.19.09-.41c.019-.224.019-.516.019-.944v-.6a.5.5 0 0 1 .5-.5m-7-7a.5.5 0 0 1 0 1h-.6c-.428 0-.72 0-.945.019c-.219.017-.331.05-.41.09a1 1 0 0 0-.436.437c-.04.078-.073.19-.09.41C3 4.18 3 4.471 3 4.9v.6a.5.5 0 0 1-1 0v-.621c0-.402 0-.734.022-1.005c.023-.281.072-.54.196-.782a2 2 0 0 1 .874-.874c.242-.124.501-.173.782-.196C4.144 2 4.477 2 4.879 2zm4.621 0c.402 0 .734 0 1.005.022c.281.023.54.072.782.196a2 2 0 0 1 .874.874c.124.242.173.501.195.782c.023.27.023.603.023 1.005V5.5a.5.5 0 0 1-1 0v-.6c0-.428 0-.72-.019-.945c-.018-.219-.05-.331-.09-.41a1 1 0 0 0-.437-.436c-.078-.04-.19-.073-.41-.09A13 13 0 0 0 10.1 3h-.6a.5.5 0 0 1 0-1z"/></svg>
React
import type { SVGProps } from "react";
export function RadixIconsCorners(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 15 15"><path fill="currentColor" d="M2.5 9a.5.5 0 0 1 .5.5v.6c0 .428 0 .72.019.945c.017.219.05.331.09.41c.096.187.249.34.437.436c.078.04.19.072.41.09c.224.019.516.019.944.019h.6a.5.5 0 0 1 0 1h-.621c-.402 0-.734 0-1.005-.023c-.281-.022-.54-.071-.782-.195a2 2 0 0 1-.874-.874c-.124-.242-.173-.501-.196-.782A13 13 0 0 1 2 10.121V9.5a.5.5 0 0 1 .5-.5m10 0a.5.5 0 0 1 .5.5v.621c0 .402 0 .734-.023 1.005c-.022.281-.071.54-.195.782a2 2 0 0 1-.874.874c-.242.124-.501.173-.782.195c-.27.023-.603.023-1.005.023H9.5a.5.5 0 0 1 0-1h.6c.428 0 .72 0 .945-.019c.219-.018.331-.05.41-.09a1 1 0 0 0 .436-.437c.04-.078.072-.19.09-.41c.019-.224.019-.516.019-.944v-.6a.5.5 0 0 1 .5-.5m-7-7a.5.5 0 0 1 0 1h-.6c-.428 0-.72 0-.945.019c-.219.017-.331.05-.41.09a1 1 0 0 0-.436.437c-.04.078-.073.19-.09.41C3 4.18 3 4.471 3 4.9v.6a.5.5 0 0 1-1 0v-.621c0-.402 0-.734.022-1.005c.023-.281.072-.54.196-.782a2 2 0 0 1 .874-.874c.242-.124.501-.173.782-.196C4.144 2 4.477 2 4.879 2zm4.621 0c.402 0 .734 0 1.005.022c.281.023.54.072.782.196a2 2 0 0 1 .874.874c.124.242.173.501.195.782c.023.27.023.603.023 1.005V5.5a.5.5 0 0 1-1 0v-.6c0-.428 0-.72-.019-.945c-.018-.219-.05-.331-.09-.41a1 1 0 0 0-.437-.436c-.078-.04-.19-.073-.41-.09A13 13 0 0 0 10.1 3h-.6a.5.5 0 0 1 0-1z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 15 15"><path fill="currentColor" d="M2.5 9a.5.5 0 0 1 .5.5v.6c0 .428 0 .72.019.945c.017.219.05.331.09.41c.096.187.249.34.437.436c.078.04.19.072.41.09c.224.019.516.019.944.019h.6a.5.5 0 0 1 0 1h-.621c-.402 0-.734 0-1.005-.023c-.281-.022-.54-.071-.782-.195a2 2 0 0 1-.874-.874c-.124-.242-.173-.501-.196-.782A13 13 0 0 1 2 10.121V9.5a.5.5 0 0 1 .5-.5m10 0a.5.5 0 0 1 .5.5v.621c0 .402 0 .734-.023 1.005c-.022.281-.071.54-.195.782a2 2 0 0 1-.874.874c-.242.124-.501.173-.782.195c-.27.023-.603.023-1.005.023H9.5a.5.5 0 0 1 0-1h.6c.428 0 .72 0 .945-.019c.219-.018.331-.05.41-.09a1 1 0 0 0 .436-.437c.04-.078.072-.19.09-.41c.019-.224.019-.516.019-.944v-.6a.5.5 0 0 1 .5-.5m-7-7a.5.5 0 0 1 0 1h-.6c-.428 0-.72 0-.945.019c-.219.017-.331.05-.41.09a1 1 0 0 0-.436.437c-.04.078-.073.19-.09.41C3 4.18 3 4.471 3 4.9v.6a.5.5 0 0 1-1 0v-.621c0-.402 0-.734.022-1.005c.023-.281.072-.54.196-.782a2 2 0 0 1 .874-.874c.242-.124.501-.173.782-.196C4.144 2 4.477 2 4.879 2zm4.621 0c.402 0 .734 0 1.005.022c.281.023.54.072.782.196a2 2 0 0 1 .874.874c.124.242.173.501.195.782c.023.27.023.603.023 1.005V5.5a.5.5 0 0 1-1 0v-.6c0-.428 0-.72-.019-.945c-.018-.219-.05-.331-.09-.41a1 1 0 0 0-.437-.436c-.078-.04-.19-.073-.41-.09A13 13 0 0 0 10.1 3h-.6a.5.5 0 0 1 0-1z"/></svg> </template>
CSS
.icon-corners {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2015%2015%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M2.5%209a.5.5%200%200%201%20.5.5v.6c0%20.428%200%20.72.019.945c.017.219.05.331.09.41c.096.187.249.34.437.436c.078.04.19.072.41.09c.224.019.516.019.944.019h.6a.5.5%200%200%201%200%201h-.621c-.402%200-.734%200-1.005-.023c-.281-.022-.54-.071-.782-.195a2%202%200%200%201-.874-.874c-.124-.242-.173-.501-.196-.782A13%2013%200%200%201%202%2010.121V9.5a.5.5%200%200%201%20.5-.5m10%200a.5.5%200%200%201%20.5.5v.621c0%20.402%200%20.734-.023%201.005c-.022.281-.071.54-.195.782a2%202%200%200%201-.874.874c-.242.124-.501.173-.782.195c-.27.023-.603.023-1.005.023H9.5a.5.5%200%200%201%200-1h.6c.428%200%20.72%200%20.945-.019c.219-.018.331-.05.41-.09a1%201%200%200%200%20.436-.437c.04-.078.072-.19.09-.41c.019-.224.019-.516.019-.944v-.6a.5.5%200%200%201%20.5-.5m-7-7a.5.5%200%200%201%200%201h-.6c-.428%200-.72%200-.945.019c-.219.017-.331.05-.41.09a1%201%200%200%200-.436.437c-.04.078-.073.19-.09.41C3%204.18%203%204.471%203%204.9v.6a.5.5%200%200%201-1%200v-.621c0-.402%200-.734.022-1.005c.023-.281.072-.54.196-.782a2%202%200%200%201%20.874-.874c.242-.124.501-.173.782-.196C4.144%202%204.477%202%204.879%202zm4.621%200c.402%200%20.734%200%201.005.022c.281.023.54.072.782.196a2%202%200%200%201%20.874.874c.124.242.173.501.195.782c.023.27.023.603.023%201.005V5.5a.5.5%200%200%201-1%200v-.6c0-.428%200-.72-.019-.945c-.018-.219-.05-.331-.09-.41a1%201%200%200%200-.437-.436c-.078-.04-.19-.073-.41-.09A13%2013%200%200%200%2010.1%203h-.6a.5.5%200%200%201%200-1z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2015%2015%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M2.5%209a.5.5%200%200%201%20.5.5v.6c0%20.428%200%20.72.019.945c.017.219.05.331.09.41c.096.187.249.34.437.436c.078.04.19.072.41.09c.224.019.516.019.944.019h.6a.5.5%200%200%201%200%201h-.621c-.402%200-.734%200-1.005-.023c-.281-.022-.54-.071-.782-.195a2%202%200%200%201-.874-.874c-.124-.242-.173-.501-.196-.782A13%2013%200%200%201%202%2010.121V9.5a.5.5%200%200%201%20.5-.5m10%200a.5.5%200%200%201%20.5.5v.621c0%20.402%200%20.734-.023%201.005c-.022.281-.071.54-.195.782a2%202%200%200%201-.874.874c-.242.124-.501.173-.782.195c-.27.023-.603.023-1.005.023H9.5a.5.5%200%200%201%200-1h.6c.428%200%20.72%200%20.945-.019c.219-.018.331-.05.41-.09a1%201%200%200%200%20.436-.437c.04-.078.072-.19.09-.41c.019-.224.019-.516.019-.944v-.6a.5.5%200%200%201%20.5-.5m-7-7a.5.5%200%200%201%200%201h-.6c-.428%200-.72%200-.945.019c-.219.017-.331.05-.41.09a1%201%200%200%200-.436.437c-.04.078-.073.19-.09.41C3%204.18%203%204.471%203%204.9v.6a.5.5%200%200%201-1%200v-.621c0-.402%200-.734.022-1.005c.023-.281.072-.54.196-.782a2%202%200%200%201%20.874-.874c.242-.124.501-.173.782-.196C4.144%202%204.477%202%204.879%202zm4.621%200c.402%200%20.734%200%201.005.022c.281.023.54.072.782.196a2%202%200%200%201%20.874.874c.124.242.173.501.195.782c.023.27.023.603.023%201.005V5.5a.5.5%200%200%201-1%200v-.6c0-.428%200-.72-.019-.945c-.018-.219-.05-.331-.09-.41a1%201%200%200%200-.437-.436c-.078-.04-.19-.073-.41-.09A13%2013%200%200%200%2010.1%203h-.6a.5.5%200%200%201%200-1z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/radix-icons/corners.svg?color=%231a73e8&size=48