#!/bin/sh # SPDX-License-Identifier: GPL-2.0-or-later # Execute the checkstyle script before committing any code. This will fail the # commit in case of style issues, ensuring that the developer will notice them. # The pre-commit hook can be bypassed with git commit -n to ignore selective # changes. # # To utilise this hook, install this file with: # cp utils/hooks/pre-commit .git/hooks/pre-commit if ps -ocommand= -p $PPID | grep -- "--amend" then args="--amend" else args="--staged" fi ./utils/checkstyle.py $args >
summaryrefslogtreecommitdiff
path: root/src/apps/qcam/assets/feathericons/arrow-right-circle.svg
blob: ff01dd587c9eef5f47e969dbaed23f0b9fe71ab7 (plain)
1
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right-circle"><circle cx="12" cy="12" r="10"></circle><polyline points="12 16 16 12 12 8"></polyline><line x1="8" y1="12" x2="16" y2="12"></line></svg>