UNPKG

lucide-solid

Version:

A Lucide icon library package for Solid applications.

26 lines (24 loc) 697 B
/** * @license lucide-solid v0.536.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. */ // src/icons/square-play.tsx import Icon from "../Icon"; var iconNode = [ ["rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", key: "h1oib" }], [ "path", { d: "M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z", key: "kmsa83" } ] ]; var SquarePlay = (props) => <Icon {...props} iconNode={iconNode} name="square-play" />; var square_play_default = SquarePlay; export { square_play_default as default }; //# sourceMappingURL=square-play.jsx.map