keyboard external input icon
keyboard-external-input-outline-rounded from Material Symbols by Google · Outline Rounded · Android · Apache-2.0 Free for personal and commercial use.
- Name
- keyboard-external-input-outline-rounded
- Set
- Material Symbols
- Style
- Outline Rounded
- Category
- Android
- Viewbox
- 24×24
- License
- Apache 2.0
5 other variants in Material Symbols
The same icon in other sets
More android icons from Material Symbols
1x-mobiledata1x-mobiledata-badge3g-mobiledata3g-mobiledata-badge4g-mobiledata4g-mobiledata-badge4g-plus-mobiledata5g5g-mobiledata-badgeadbairplanemode-inactiveandroidandroid-cell-4-barandroid-cell-4-bar-alertandroid-cell-4-bar-offandroid-cell-4-bar-plusandroid-cell-5-barandroid-cell-5-bar-alertandroid-cell-5-bar-offandroid-cell-5-bar-plusandroid-cell-dual-4-barandroid-cell-dual-4-bar-alertandroid-cell-dual-4-bar-plusandroid-cell-dual-5-bar
Use the keyboard external input icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M4 17V7zm0 2q-.825 0-1.412-.587T2 17V7q0-.825.588-1.412T4 5h16q.825 0 1.413.588T22 7v5q0 .5-.312.75T21 13t-.687-.25T20 12V7H4v10h7q.425 0 .713.288T12 18t-.288.713T11 19zm5-3h3q.425 0 .713-.288T13 15t-.288-.712T12 14H9q-.425 0-.712.288T8 15t.288.713T9 16m9.175 3H15q-.425 0-.712-.288T14 18t.288-.712T15 17h3.175l-.9-.9Q17 15.825 17 15.413t.3-.713q.275-.275.7-.275t.7.275l2.6 2.6q.3.3.3.7t-.3.7l-2.6 2.6q-.275.275-.687.288T17.3 21.3q-.275-.275-.275-.7t.275-.7zM6.713 9.713Q7 9.425 7 9t-.288-.712T6 8t-.712.288T5 9t.288.713T6 10t.713-.288m3 0Q10 9.426 10 9t-.288-.712T9 8t-.712.288T8 9t.288.713T9 10t.713-.288m3 0Q13 9.426 13 9t-.288-.712T12 8t-.712.288T11 9t.288.713T12 10t.713-.288m3 0Q16 9.426 16 9t-.288-.712T15 8t-.712.288T14 9t.288.713T15 10t.713-.288m3 0Q19 9.426 19 9t-.288-.712T18 8t-.712.288T17 9t.288.713T18 10t.713-.288m-12 3Q7 12.426 7 12t-.288-.712T6 11t-.712.288T5 12t.288.713T6 13t.713-.288m3 0Q10 12.426 10 12t-.288-.712T9 11t-.712.288T8 12t.288.713T9 13t.713-.288m3 0Q13 12.426 13 12t-.288-.712T12 11t-.712.288T11 12t.288.713T12 13t.713-.288M15 13q.425 0 .713-.288T16 12t-.288-.712T15 11t-.712.288T14 12t.288.713T15 13m2-1q0 .425.288.713T18 13t.713-.288T19 12v.038V12q0-.425-.288-.712T18 11t-.712.288T17 12"/></svg>
React
import type { SVGProps } from "react";
export function MaterialSymbolsKeyboardExternalInputOutlineRounded(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M4 17V7zm0 2q-.825 0-1.412-.587T2 17V7q0-.825.588-1.412T4 5h16q.825 0 1.413.588T22 7v5q0 .5-.312.75T21 13t-.687-.25T20 12V7H4v10h7q.425 0 .713.288T12 18t-.288.713T11 19zm5-3h3q.425 0 .713-.288T13 15t-.288-.712T12 14H9q-.425 0-.712.288T8 15t.288.713T9 16m9.175 3H15q-.425 0-.712-.288T14 18t.288-.712T15 17h3.175l-.9-.9Q17 15.825 17 15.413t.3-.713q.275-.275.7-.275t.7.275l2.6 2.6q.3.3.3.7t-.3.7l-2.6 2.6q-.275.275-.687.288T17.3 21.3q-.275-.275-.275-.7t.275-.7zM6.713 9.713Q7 9.425 7 9t-.288-.712T6 8t-.712.288T5 9t.288.713T6 10t.713-.288m3 0Q10 9.426 10 9t-.288-.712T9 8t-.712.288T8 9t.288.713T9 10t.713-.288m3 0Q13 9.426 13 9t-.288-.712T12 8t-.712.288T11 9t.288.713T12 10t.713-.288m3 0Q16 9.426 16 9t-.288-.712T15 8t-.712.288T14 9t.288.713T15 10t.713-.288m3 0Q19 9.426 19 9t-.288-.712T18 8t-.712.288T17 9t.288.713T18 10t.713-.288m-12 3Q7 12.426 7 12t-.288-.712T6 11t-.712.288T5 12t.288.713T6 13t.713-.288m3 0Q10 12.426 10 12t-.288-.712T9 11t-.712.288T8 12t.288.713T9 13t.713-.288m3 0Q13 12.426 13 12t-.288-.712T12 11t-.712.288T11 12t.288.713T12 13t.713-.288M15 13q.425 0 .713-.288T16 12t-.288-.712T15 11t-.712.288T14 12t.288.713T15 13m2-1q0 .425.288.713T18 13t.713-.288T19 12v.038V12q0-.425-.288-.712T18 11t-.712.288T17 12"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M4 17V7zm0 2q-.825 0-1.412-.587T2 17V7q0-.825.588-1.412T4 5h16q.825 0 1.413.588T22 7v5q0 .5-.312.75T21 13t-.687-.25T20 12V7H4v10h7q.425 0 .713.288T12 18t-.288.713T11 19zm5-3h3q.425 0 .713-.288T13 15t-.288-.712T12 14H9q-.425 0-.712.288T8 15t.288.713T9 16m9.175 3H15q-.425 0-.712-.288T14 18t.288-.712T15 17h3.175l-.9-.9Q17 15.825 17 15.413t.3-.713q.275-.275.7-.275t.7.275l2.6 2.6q.3.3.3.7t-.3.7l-2.6 2.6q-.275.275-.687.288T17.3 21.3q-.275-.275-.275-.7t.275-.7zM6.713 9.713Q7 9.425 7 9t-.288-.712T6 8t-.712.288T5 9t.288.713T6 10t.713-.288m3 0Q10 9.426 10 9t-.288-.712T9 8t-.712.288T8 9t.288.713T9 10t.713-.288m3 0Q13 9.426 13 9t-.288-.712T12 8t-.712.288T11 9t.288.713T12 10t.713-.288m3 0Q16 9.426 16 9t-.288-.712T15 8t-.712.288T14 9t.288.713T15 10t.713-.288m3 0Q19 9.426 19 9t-.288-.712T18 8t-.712.288T17 9t.288.713T18 10t.713-.288m-12 3Q7 12.426 7 12t-.288-.712T6 11t-.712.288T5 12t.288.713T6 13t.713-.288m3 0Q10 12.426 10 12t-.288-.712T9 11t-.712.288T8 12t.288.713T9 13t.713-.288m3 0Q13 12.426 13 12t-.288-.712T12 11t-.712.288T11 12t.288.713T12 13t.713-.288M15 13q.425 0 .713-.288T16 12t-.288-.712T15 11t-.712.288T14 12t.288.713T15 13m2-1q0 .425.288.713T18 13t.713-.288T19 12v.038V12q0-.425-.288-.712T18 11t-.712.288T17 12"/></svg> </template>
CSS
.icon-keyboard-external-input-outline-rounded {
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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M4%2017V7zm0%202q-.825%200-1.412-.587T2%2017V7q0-.825.588-1.412T4%205h16q.825%200%201.413.588T22%207v5q0%20.5-.312.75T21%2013t-.687-.25T20%2012V7H4v10h7q.425%200%20.713.288T12%2018t-.288.713T11%2019zm5-3h3q.425%200%20.713-.288T13%2015t-.288-.712T12%2014H9q-.425%200-.712.288T8%2015t.288.713T9%2016m9.175%203H15q-.425%200-.712-.288T14%2018t.288-.712T15%2017h3.175l-.9-.9Q17%2015.825%2017%2015.413t.3-.713q.275-.275.7-.275t.7.275l2.6%202.6q.3.3.3.7t-.3.7l-2.6%202.6q-.275.275-.687.288T17.3%2021.3q-.275-.275-.275-.7t.275-.7zM6.713%209.713Q7%209.425%207%209t-.288-.712T6%208t-.712.288T5%209t.288.713T6%2010t.713-.288m3%200Q10%209.426%2010%209t-.288-.712T9%208t-.712.288T8%209t.288.713T9%2010t.713-.288m3%200Q13%209.426%2013%209t-.288-.712T12%208t-.712.288T11%209t.288.713T12%2010t.713-.288m3%200Q16%209.426%2016%209t-.288-.712T15%208t-.712.288T14%209t.288.713T15%2010t.713-.288m3%200Q19%209.426%2019%209t-.288-.712T18%208t-.712.288T17%209t.288.713T18%2010t.713-.288m-12%203Q7%2012.426%207%2012t-.288-.712T6%2011t-.712.288T5%2012t.288.713T6%2013t.713-.288m3%200Q10%2012.426%2010%2012t-.288-.712T9%2011t-.712.288T8%2012t.288.713T9%2013t.713-.288m3%200Q13%2012.426%2013%2012t-.288-.712T12%2011t-.712.288T11%2012t.288.713T12%2013t.713-.288M15%2013q.425%200%20.713-.288T16%2012t-.288-.712T15%2011t-.712.288T14%2012t.288.713T15%2013m2-1q0%20.425.288.713T18%2013t.713-.288T19%2012v.038V12q0-.425-.288-.712T18%2011t-.712.288T17%2012%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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M4%2017V7zm0%202q-.825%200-1.412-.587T2%2017V7q0-.825.588-1.412T4%205h16q.825%200%201.413.588T22%207v5q0%20.5-.312.75T21%2013t-.687-.25T20%2012V7H4v10h7q.425%200%20.713.288T12%2018t-.288.713T11%2019zm5-3h3q.425%200%20.713-.288T13%2015t-.288-.712T12%2014H9q-.425%200-.712.288T8%2015t.288.713T9%2016m9.175%203H15q-.425%200-.712-.288T14%2018t.288-.712T15%2017h3.175l-.9-.9Q17%2015.825%2017%2015.413t.3-.713q.275-.275.7-.275t.7.275l2.6%202.6q.3.3.3.7t-.3.7l-2.6%202.6q-.275.275-.687.288T17.3%2021.3q-.275-.275-.275-.7t.275-.7zM6.713%209.713Q7%209.425%207%209t-.288-.712T6%208t-.712.288T5%209t.288.713T6%2010t.713-.288m3%200Q10%209.426%2010%209t-.288-.712T9%208t-.712.288T8%209t.288.713T9%2010t.713-.288m3%200Q13%209.426%2013%209t-.288-.712T12%208t-.712.288T11%209t.288.713T12%2010t.713-.288m3%200Q16%209.426%2016%209t-.288-.712T15%208t-.712.288T14%209t.288.713T15%2010t.713-.288m3%200Q19%209.426%2019%209t-.288-.712T18%208t-.712.288T17%209t.288.713T18%2010t.713-.288m-12%203Q7%2012.426%207%2012t-.288-.712T6%2011t-.712.288T5%2012t.288.713T6%2013t.713-.288m3%200Q10%2012.426%2010%2012t-.288-.712T9%2011t-.712.288T8%2012t.288.713T9%2013t.713-.288m3%200Q13%2012.426%2013%2012t-.288-.712T12%2011t-.712.288T11%2012t.288.713T12%2013t.713-.288M15%2013q.425%200%20.713-.288T16%2012t-.288-.712T15%2011t-.712.288T14%2012t.288.713T15%2013m2-1q0%20.425.288.713T18%2013t.713-.288T19%2012v.038V12q0-.425-.288-.712T18%2011t-.712.288T17%2012%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/material-symbols/keyboard-external-input-outline-rounded.svg?color=%231a73e8&size=48